This is a known bug in ffmpeg, that it incorrectly reports the frame rate and interlacing for PAFF encoded h264 files. This includes the FFMpegSource filter for avisynth.
I've been able to get ffmpeg to correctly process them by forcing the frame rate and interlace modes.
I've been only able to detect these files with mediainfo, it correctly reports the intelace and also reports a different frame rate from the original frame rate.
Code: Select all
Frame rate : 50.000 fps
Original frame rate : 25.000 fps
Standard : NTSC
Color space : YUV
Chroma subsampling : 4:2:0
Bit depth : 8 bits
Scan type : Interlaced
Scan order : Top Field First
The relevant variables in ffastrans say:
Code: Select all
%f_frame_rate%=50
%i_interlace%=0
Thanks
Mark