Skip to content

Instantly share code, notes, and snippets.

View LX5321's full-sized avatar

Alexander Roque Rodrigues LX5321

View GitHub Profile
@LX5321
LX5321 / note.txt
Created July 27, 2020 03:32 — forked from tayyebi/note.txt
Trim and rotate videos for Instagram IGTV
Trim
> https://www.ostechnix.com/20-ffmpeg-commands-beginners/
$ ffmpeg -i input.mp4 -ss 00:00:00 -codec copy -t 600 output.mp4
Rotate
> https://stackoverflow.com/questions/3937387
$ ffmpeg -i input.mp4 -metadata:s:v rotate="-90" -codec copy output.mp4