DaVinci Resolve 18 | How To Use Your Video Formats! | Arch Linux / Linux Based

1 year ago
17

This is a brief understanding on the issue at hand with DaVinci Resolve not allowing you to use other file formats. Even then .MOV files don't seem to want to work either! This tutorial helps you solve that problem entirely!!

Code Command: ----- *NOTE* Where .MP4 says YOU CAN modify that file format to whatever file video format you have!
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

Create a encode.sh file! Create a new .txt file and rename it to encode.sh!!
Make sure to remove the .txt at the end!

Loading comments...