Skip to content

Instantly share code, notes, and snippets.

@Bomberus
Created March 29, 2020 13:06
Show Gist options
  • Save Bomberus/72aa1be0b21dabf3267cec43ee44f5e2 to your computer and use it in GitHub Desktop.
Save Bomberus/72aa1be0b21dabf3267cec43ee44f5e2 to your computer and use it in GitHub Desktop.
Convert Video Folder for Davinci Resolve Import
# You might need to adjust the initial file selection
#!/bin/bash
for file in *.MOV;
do ffmpeg -y -i $file -c:v mpeg4 -force_key_frames "expr:gte(t,n_forced*1)" -r ntsc-film -b:v 250000k -c:a pcm_s16le "${file}.mov";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment