Difference between revisions of "User:Woozle/linkdump/2022"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
Line 426: Line 426:
 
* possibly additional tips & tricks here:
 
* possibly additional tips & tricks here:
 
** https://gist.github.com/ViktorNova/1dd68a2ec99781fd9adca49507c73ee2
 
** https://gist.github.com/ViktorNova/1dd68a2ec99781fd9adca49507c73ee2
 +
* https://blog.wesleyac.com/posts/consider-sqlite

Revision as of 20:38, 4 August 2022

January

February

March

April

May

June

July

August

To rotate a video 90 degrees, try:

$INPUTVIDEO='input.mp4'
$OUTPUTVIDEO='output.mp4'
ffmpeg -i $INPUTVIDEO -metadata:s:v rotate="-90" -codec copy $OUTPUTVIDEO