Skip to content

Instantly share code, notes, and snippets.

@paulkre
Last active November 19, 2020 15:56
Show Gist options
  • Save paulkre/4e9723fcb7d116a24161246235603a10 to your computer and use it in GitHub Desktop.
Save paulkre/4e9723fcb7d116a24161246235603a10 to your computer and use it in GitHub Desktop.
FFmpeg command for converting MOV files to MP4
ffmpeg -i input.mov -c:v libx264 -crf 23 -maxrate 6M -bufsize 2M -x264-params colormatrix=bt709 -c:a aac -b:a 160k output.mp4
Flag Description
-crf 23 Constant Rate Factor – ranges from 0 (no compression) to 51 (maximum compression).
-maxrate 6M -bufsize 2M Limits the output file size.
-x264-params colormatrix=bt709 Prevents colors from being washed out during compression.
-c:a aac -b:a 160k Sets the audio compression.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment