Hi,

and however I'm a cat

however

i have a source.mxf file HD (1920x1080) 50i interlaced file that is 411 pixel format.

I need to create a mp4 h264 (avc1) using ffmpeg, interlaced, but 422

is this commandline correct?

Code:
ffmpeg.exe -i source.mxf -filter_complex "[0:1] [0:2] amerge" -pix_fmt yuv422p -c:v libx264 -profile:v high422 -level:v 4.1 -g 33 -bf 2 -crf 22 -flags +ildct+ilme -top 1 -c:a ac3 -b:a 320k -ar 48000 -aspect 16:9 output.mp4

and I wonder: only in the case the source is 422 but the output is 411 is necessary apply at the commandline the line:

Code:
-vf scale=interl=1 -pix_fmt yuv420p -profile:v main
or I mystake? thanks