Created
September 27, 2022 10:34
-
-
Save avilde/f4760ecfbef9cb236bab7ebda0996e90 to your computer and use it in GitHub Desktop.
Compress MOV files to MP4 using FFMPEG
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
for i in *.mov; do ffmpeg -i "$i" -vcodec libx264 -crf 24 "${i%.*}.mp4"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment