[FFmpeg-user] Convert images to DNXHD 444

Gonzalo Garramuño ggarra13 at gmail.com
Wed Apr 11 00:51:09 EEST 2018



El 10/04/18 a las 18:14, Paul B Mahol escribió:
> On 4/10/18, Matt Kitcat <matt at elmtreecottages.co.uk> wrote:
>>
>> But I would also like to be able to generate DNxHR 444 and hqx as well.
>>
> Both are already supported, update your obsolete ffmpeg version.
I verified they are supported, but you need to be extremely careful with 
the flags you pass to ffmpeg.  You also need to be careful with the 
resolution of your images as that effects the bitrate ( -b:v ). And as 
Carl pointed out, the frame rate must be a fraction and that fraction 
must be a valid fraction by the AVID specs.

For DNxHR 444, this line should do it:

$ ffmpeg -i test.%04d.tif -r 60000/1001 -codec:v dnxhd -profile:v 
dnxhr_444 -b:v 880M  -pix_fmt yuv444p10 -y test_hr444.mov

For DNxHQX, the following line should do it:

$ ffmpeg -i test.%04d.tif -r 60000/1001 -codec:v dnxhd -profile:v 
dnxhr_hqx -b:v 880M  -pix_fmt yuv420p10 -y test_hqx.mov

-- 
Gonzalo Garramuño



More information about the ffmpeg-user mailing list