Skip to content

Instantly share code, notes, and snippets.

@seamonkey420
Created October 20, 2024 21:06
Show Gist options
  • Select an option

  • Save seamonkey420/ef0718ebf14bb2101e155e8299929b21 to your computer and use it in GitHub Desktop.

Select an option

Save seamonkey420/ef0718ebf14bb2101e155e8299929b21 to your computer and use it in GitHub Desktop.
MOV to MP4 with FFMPEG examples
:: Examples of converting mov to mp4 via ffmpeg
:: near lossless (visually)
ffmpeg -i input.mov -crf 18 output.mp4
:: lossless (huge file sizes)
ffmpeg -i input.mov -crf 0 output.mp4
:: compatibility (possible washout of colors though!)
ffmpeg -i input.mov -crf 18 -vf format=yuv420p output.mp4
:: stream copy method
ffmpeg -i input.mov -c copy output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment