Skip to content

Instantly share code, notes, and snippets.

@reinzor
Created August 24, 2025 11:08
Show Gist options
  • Select an option

  • Save reinzor/53eb988f9a717f22ae8c51b6efa525b2 to your computer and use it in GitHub Desktop.

Select an option

Save reinzor/53eb988f9a717f22ae8c51b6efa525b2 to your computer and use it in GitHub Desktop.
Prepare video files for Davinci Resolve Linux
```
for f in *.mp4; do ffmpeg -i "$f" -c:v dnxhd -profile:v dnxhr_sq -c:a pcm_s16le "resolve_${f%.mp4}.mov"; done
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment