Skip to content

Instantly share code, notes, and snippets.

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