Skip to content

Instantly share code, notes, and snippets.

@betandr
Created August 8, 2019 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save betandr/09e044a979a66a76893df950d823bd2e to your computer and use it in GitHub Desktop.
Save betandr/09e044a979a66a76893df950d823bd2e to your computer and use it in GitHub Desktop.
ffmpeg downsample for Twitter
ffmpeg -i test.mov \
-pix_fmt yuv420p \
-vcodec libx264 \
-vf scale=640:-1 \
-acodec aac \
-vb 1024k \
-minrate 1024k \
-maxrate 1024k \
-bufsize 1024k \
-ar 44100 \
-ac 2 \
-strict experimental \
-r 30 \
out.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment