Skip to content

Instantly share code, notes, and snippets.

@futuregraph
Last active November 27, 2016 12:22
Show Gist options
  • Save futuregraph/24a67fc024597e854b169a6f49fcc3ad to your computer and use it in GitHub Desktop.
Save futuregraph/24a67fc024597e854b169a6f49fcc3ad to your computer and use it in GitHub Desktop.
useful snippet to encode all .MOV files in folder to x264
find . -iname '*.MOV' -exec sh -c 'ffmpeg -i $1 -c:v libx264 -crf 23 -c:a aac -strict experimental -b:a 192k $1.mp4' _ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment