Created
October 20, 2024 21:06
-
-
Save seamonkey420/ef0718ebf14bb2101e155e8299929b21 to your computer and use it in GitHub Desktop.
MOV to MP4 with FFMPEG examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :: 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