Skip to content

Instantly share code, notes, and snippets.

@heavyengineer
Created May 19, 2019 22:28
Show Gist options
  • Save heavyengineer/a70220bd3273eb36d3a156b4d2005b24 to your computer and use it in GitHub Desktop.
Save heavyengineer/a70220bd3273eb36d3a156b4d2005b24 to your computer and use it in GitHub Desktop.
ffmpeg transcode gohero pro 7 footage to something davinci resolve 16 can use
#!/bin/bash
for f in *.MP4
do
ffmpeg -i ${f} -c:v dnxhd -vf "scale=1280:720,fps=30000/1001,format=yuv422p" -b:v 110M -c:a pcm_s16le ${f}.mov
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment