Last active
November 27, 2016 12:22
-
-
Save futuregraph/24a67fc024597e854b169a6f49fcc3ad to your computer and use it in GitHub Desktop.
useful snippet to encode all .MOV files in folder to x264
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
| 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