I'm trying to encode one of my VHS captures so I can put it on a DVD. Usually what I'd do is run an AviSynth script through FFmpeg with the following code
Usually "-top 1 -flags +ilme+ildct" sets the video to be interlaced/MBAFF top field first, and it's been working very well for me for a long time. However, it's not wanting to work properly now. It's jumpy and I don't know what the fix is. Example attached.Code:-c:v mpeg2video -vf setdar=4/3 -b:v 9000k -target ntsc-dvd -c:a ac3 -top 1 -flags +ilme+ildct
I tried top 1, 0 and -1, all have the same result. When I'm encoding to x264 I tried both -x264ops tff=1 and bff=1, same result. I have another file attached that was encoded a while back, same flag settings although it's encoded with x264 instead of MPEG-2.
Does anyone know how to fix this? I'm running the latest BtbN FFMpeg. ffmpeg-N-100688-ga423bc9dc2. I tried the latest cyandev version as well, same result.
+ Reply to Thread
Results 1 to 4 of 4
-
Last edited by ENunn; 21st Jan 2021 at 12:03.
-
Maybe:
-c:v mpeg2video -deinterlace -filter:v yadif -b:v 9000k -target ntsc-dvd -c:a ac3 -top 1 -flags +ilme+ildct -
-vf setfield=tff
You can add it on to the filter chain
eg.
Code:-vf setdar=4/3,setfield=tff
-
Similar Threads
-
How do i fix flagging(tearing) in this video?
By gil900 in forum RestorationReplies: 22Last Post: 7th May 2023, 11:03 -
How to pipe interlaced content from mencoder to ffmpeg?
By Selur in forum Newbie / General discussionsReplies: 1Last Post: 2nd Dec 2020, 02:15 -
FFMPEG Interlaced MPEG2 video to x264 Issue
By Rizoko in forum Video ConversionReplies: 20Last Post: 16th May 2020, 22:39 -
ffmpeg changes interlaced to progressive
By SF01 in forum Video ConversionReplies: 12Last Post: 30th Mar 2020, 09:51 -
ffmpeg creating prores in MOV -- color matrix flagging
By jagabo in forum EditingReplies: 13Last Post: 2nd Feb 2019, 15:15