Last active
August 29, 2015 14:04
-
-
Save realchrisolin/3cc8519f377ade3334b3 to your computer and use it in GitHub Desktop.
h264 to dnxhd
This file contains 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
# Simple script to convert all .MOV files (like the ones generated by a Veho Muvi) to an acceptable codec that can be used with Cinelerra | |
for i in *.MOV; do avconv -i $i -y -vcodec dnxhd -b 145M -mbd rd -r 59.94 -acodec copy -threads 6 ${i%.MOV}-DNxHD.mov; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment