Created
July 27, 2024 04:06
-
-
Save skorotkiewicz/d295927ae6ff4348486bcafc909683cd to your computer and use it in GitHub Desktop.
Convert videos for DaVinci Resolve
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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