Skip to content

Instantly share code, notes, and snippets.

@avilde
Created September 27, 2022 10:34
Show Gist options
  • Save avilde/f4760ecfbef9cb236bab7ebda0996e90 to your computer and use it in GitHub Desktop.
Save avilde/f4760ecfbef9cb236bab7ebda0996e90 to your computer and use it in GitHub Desktop.
Compress MOV files to MP4 using FFMPEG
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