Hi there,
I'm dealing with an NTSC DVD of a film shot in a PAL country, using avisynth. All the frames are blended. I tried Yadif(order=-1, mode=1) srestore() which does bring it down to 25FPS, but there's frame skipping and some ghosting. I've tried order=1 in yadif but it doesn't help.
I'd like at least to get rid of the interlacing and the frame skipping; ideally, the ghosting should go, too
Here are two examples. The "vanilla" doesn't have any treatment done to it, and the "yadif srestore" one has the lines above.
Thanks!
Note: I also tried tried tfm()TDecimate() just in case, to bring it to 23.976, but I get the same problems.
+ Reply to Thread
Results 1 to 6 of 6
-
-
Given you sample is interlaced video but overcompressed in progressive mode:
Code:AssumeTFF() Yadif(mode=1) # or better: QTGMC() SRestore(frate=25)
-
Thanks a bunch! Yes, that's much better. Still a little bit of ghosting, but nothing too terrible.
I don't really understand what AssumeTFF() does, though. The avisynth page is a bit cryptic to me:
AssumeTFF and AssumeBFF let you tell AviSynth what you believe the field order a clip has.
They do not change the actual field order, just the internal state flags in AviSynth relating to the source clip used.Thanks in advance.
Last edited by bruno321; 6th Oct 2018 at 03:47.
-
Put on your bobber alone. Yadif(Mode=1), QTGMC, whatever. Find a place with steady movement and play it. I use VDub and the right-arrow key for these things. If it plays smoothly, you're okay and can put on SRestore. If it plays with a herky-jerky back-and-forth motion, the field order is incorrect and then you (usually) put on AssumeTFF (Assume Top Field First) before the bobber. Test again and then put on SRestore.
The field order has to be correct or the unblending will fail. As you discovered. And just because you need AssumeTFF for the sample doesn't necessarily mean you need it for the complete video. In cutting it you might have reversed the field order. Always test with the bobber alone first. -
Each frame of interlaced video contains two half pictures, called fields. One field comprises the even numbered scan lines (0, 2, 4... 478), the other the odd numbered scan lines (1, 3, 5... 479). They are intended to be seen separately and sequentially. The field order determines which of the two fields is seen first. If the field order is set wrong you get fast jerky playback because the fields are show out of order, two steps forward, one step back, repeated at 60 fields per second. With the fields (frames after Yadif(mode=1) or QTGMC()) out of order SRestore doesn't work properly.
-
For determining field order I always use this:
AssumeTFF
Separatefields()
Step through the resulting video, field-by-field. If the motion looks normal, the video is top field first. However, if the motion goes backwards and forwards ("two steps forward, one step back"), then field order is BFF. The other suggestions will probably work as well, but I've been doing it this way for a long time and feel that it is really hard for me to screw this up (which I seem to do a lot).
Similar Threads
-
PAL to NTSC with avisynth - blended frames
By nesburf in forum Video ConversionReplies: 7Last Post: 27th Dec 2017, 23:21 -
Anyway to restore all frames from NTSC>PAL animation
By nick1977 in forum RestorationReplies: 39Last Post: 23rd May 2017, 06:01 -
Looking for advice on what i think is blended source
By skfunnyboy in forum Video ConversionReplies: 2Last Post: 12th May 2017, 08:35 -
Laserdisc BEST source (PAL vs NTSC)
By darkbluesky in forum Capturing and VCRReplies: 35Last Post: 8th Jan 2017, 21:28 -
NTSC blended
By xuguang_he in forum RestorationReplies: 3Last Post: 16th Dec 2015, 12:46