Created
September 16, 2026 17:40
-
-
Save wteuber/7eaf9150b2754d63bbd9bb44434a7277 to your computer and use it in GitHub Desktop.
Reduce screen recording video size mov2mp4
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 ~/Desktop/Screen\ Recording\ 2026-09-16\ at\ 18.23.31.mov \ | |
| -vf "fps=30,scale=1920:-2:flags=lanczos" \ | |
| -c:v libx264 -preset slow -crf 23 \ | |
| -c:a aac -b:a 128k \ | |
| -movflags +faststart \ | |
| ~/Desktop/Screen\ Recording\ 2026-09-16\ at\ 18.23.31.mov.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment