🎥 How to open Sony a7S III 10-bit 4:2:2 video in Da Vinci Resolve Free || Panasonic Lumix DC-GH5

This was so frustrating! Getting a new camera then not being able to use the footage... However, with a little bit of research, we were able to figure out how to use the awesome 10-bit 4:2:2 footage! Even though most of us don’t know how to program, we are all in the same boat. For this solution we are going to use a commandline tool called FFMPEG. This tool will work for both mac and PC. However, we are going to be using this on Windows. You can use the command on Windows on CMD, or on mac and linux through the terminal. The batch script WILL NOT work on mac or linux. Batch script contents: SETLOCAL ENABLEDELAYEDEXPANSION set “OUTPUT_DIRECTORY=.\CONVERTED“ if not exist %OUTPUT_DIRECTORY% mkdir %OUTPUT_DIRECTORY% for %%f IN (*.mp4) DO ( set “OUTPUT_FILE=!OUTPUT_DIRECTORY!\%%f“ ffmpeg -i “%%f“ -c:v prores_ks -profile:v 3 -c:a pcm_s16le “!OUTPUT_FILE:.mp4=.mov!“ ) FFMPEG: https
Back to Top