Created
January 18, 2023 08:02
-
-
Save foobarbaz-pl/a32f5946e4c5fa4d7f3e0ea45a555a22 to your computer and use it in GitHub Desktop.
Convert all MOV files to MP4
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 h264 -acodec mp2 "${i%.*}.mp4"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment