Created
November 24, 2021 10:13
-
-
Save luzeduardo/269bb6f6d84efc5f10a60f8714950385 to your computer and use it in GitHub Desktop.
Convert all mov movies inside the folder to MP$
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