Skip to content

Instantly share code, notes, and snippets.

@tayyebi
Last active July 27, 2020 03:32
Show Gist options
  • Save tayyebi/374c429ea78300f5f2163d034ddb7548 to your computer and use it in GitHub Desktop.
Save tayyebi/374c429ea78300f5f2163d034ddb7548 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment