Skip to content

Instantly share code, notes, and snippets.

@JesusMartinAlonso
Created February 6, 2019 15:33
Show Gist options
  • Save JesusMartinAlonso/b5bcc1f60609ee0490dd045d892b58a8 to your computer and use it in GitHub Desktop.
Save JesusMartinAlonso/b5bcc1f60609ee0490dd045d892b58a8 to your computer and use it in GitHub Desktop.
Useful ffmpeg commands
# Convert a 9:16 video (1080x1920) into a 3:4 video (1440x1920) adding orange bands
# Documentation: https://ffmpeg.org/ffmpeg-filters.html#pad-1
ffmpeg -i splashVideo.mp4 -vf pad=width=1440:height=1920:x=180:y=0:color=orange -c:v libx264 -crf 20 -c:a copy output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment