Skip to content

Instantly share code, notes, and snippets.

@shivasiddharth
Created November 11, 2020 09:45
Show Gist options
  • Save shivasiddharth/407be5c8e8e923785133dbfc8d7451da to your computer and use it in GitHub Desktop.
Save shivasiddharth/407be5c8e8e923785133dbfc8d7451da to your computer and use it in GitHub Desktop.
Script to make mp4 video Da Vinci Resolve Compatible in Linux
#!/bin/bash
for f in *.mp4;
do ffmpeg -i "$f" -c:v dnxhd -profile:v dnxhr_hq -pix_fmt yuv422p -c:a pcm_s16le -preset ultrafast -f mov "$f".mov
done
@Urbullies
Copy link

``

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment