Skip to content

Instantly share code, notes, and snippets.

@realchrisolin
Last active August 29, 2015 14:04
Show Gist options
  • Save realchrisolin/3cc8519f377ade3334b3 to your computer and use it in GitHub Desktop.
Save realchrisolin/3cc8519f377ade3334b3 to your computer and use it in GitHub Desktop.
h264 to dnxhd
# 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