Last active
April 18, 2025 15:16
-
-
Save rdundon/83ec2c4b71464cf20d324b355df73fbe to your computer and use it in GitHub Desktop.
Convert MacOS screen recordings in Quicktime to smaller MP4s via CLI
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
# A quick way to convert MacOS screen recordings in Quicktime to smaller MP4s | |
ffmpeg -i input.mov -vcodec h264 -crf 28 -acodec aac output.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment