Created
May 30, 2025 08:47
-
-
Save szydan/f997c895e3cc3a0a5b2a51bdf31ffb75 to your computer and use it in GitHub Desktop.
reduce video size
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
ffmpeg -i input.mov \ | |
-c:v libx264 -preset medium -crf 28 \ | |
-c:a aac -b:a 128k \ | |
output.mp4 | |
ffmpeg -i input.mov \ | |
-vf scale=1280:-2 \ | |
-c:v libx264 -preset medium -crf 28 \ | |
-an \ | |
output.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment