Page 1 of 1

[SOLVED] How to make Prores yuv 422 top frame first

Posted: Thu Jun 27, 2019 3:20 pm
by yves
Hi all,

I want to make prores Yuv 422 intelaced top frame first with custom ffmpeg encoder with the following settings :
Video codec : prores_ks
Options : -profile:v 3 -pix_fmt yuv422p10le

yuv422p10le generates progressive frames, but I need intelaced top frame first. What are the good settings ?

Any help would be greatly appreciated.
Thanks, Yves

Re: How to make Prores yuv 422 top frame first

Posted: Fri Jun 28, 2019 7:35 am
by emcodem
Hi yves,
google search for "ffmpeg prores interlaced" brings up as 4th result for me this:

Code: Select all

 -flags +ildct+ilme -top 1
By the way, the pix_fmt is not at all connected to the interlacing. Any type of interlacing can be represented in any pix_fmt. The "p" in YUV422P means "Planar", it indicates how the Y U and V bytes are grouped in the byte stream.

cheers!

Re: How to make Prores yuv 422 top frame first

Posted: Fri Jun 28, 2019 12:35 pm
by yves
Hi emcodem. Thanks for your reply.

It works well with your indications. Options went : -profile:v 3 -flags +ildct+ilme -top 1 -pix_fmt yuv422p10le

Thank you!