Skip to content

Instantly share code, notes, and snippets.

@keijiro
Last active February 15, 2020 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keijiro/8c05c03ac213346ce1c7932badd051e6 to your computer and use it in GitHub Desktop.
Save keijiro/8c05c03ac213346ce1c7932badd051e6 to your computer and use it in GitHub Desktop.
Transcode all the AVI files in the current directory using the ProRes 422 HQ codec with ffmpeg
for file in *.avi; do ffmpeg -i $file -c:v prores_ks -profile:v 3 -an "$(basename "$file" .avi)".mov; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment