Skip to content

Instantly share code, notes, and snippets.

@skorotkiewicz
Created July 27, 2024 04:06
Show Gist options
  • Save skorotkiewicz/d295927ae6ff4348486bcafc909683cd to your computer and use it in GitHub Desktop.
Save skorotkiewicz/d295927ae6ff4348486bcafc909683cd to your computer and use it in GitHub Desktop.
Convert videos for DaVinci Resolve
mkdir transcoded; for i in *.mp4; do ffmpeg -i "$i" -vcodec mjpeg -q:v 2 -acodec pcm_s16be -q:a 0 -f mov "transcoded/${i%.*}.mov"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment