Skip to content

Instantly share code, notes, and snippets.

@foobarbaz-pl
Created January 18, 2023 08:02
Show Gist options
  • Save foobarbaz-pl/a32f5946e4c5fa4d7f3e0ea45a555a22 to your computer and use it in GitHub Desktop.
Save foobarbaz-pl/a32f5946e4c5fa4d7f3e0ea45a555a22 to your computer and use it in GitHub Desktop.
Convert all MOV files to MP4
for i in *.mov; do ffmpeg -i "$i" -vcodec h264 -acodec mp2 "${i%.*}.mp4"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment