Original MPEG2 sample
H264 Sample after re-encoding with the below script
I've used this script hundreds of times without problems so I don't understand what's causing the judder. You can see the judder in Windows Media Player or on your TV.Code:setmtmode(5,9) Mpeg2Source("E:\Video.d2v", CPU=6) setmtmode(2) McTemporalDenoise(settings="medium", interlaced=true) # Sharpening strength is 150 AssumeTFF() # or AssumeBFF() depending on the source QTGMC(Preset="Super Fast") # Removes interlacing artefacts. Strangely this is faster than Ultra Fast Vinverse() RemoveSpots() AddGrainC(var=1.0,uvar=1.0) SeparateFields() SelectEvery(4,0,3) Weave() Tweak(Bright=0, Sat=1.0, Cont=1.0, Hue=10.0, Coring=False) Crop(8,0,-12,-8) AddBorders(10,4,10,4, $000000)
+ Reply to Thread
Results 1 to 8 of 8
-
-
I think the field order is wrong: encoded as TFF, flagged as BFF (or the reverse).
Cheers,
David. -
It's interlaced though isn't it? I thought it it's interlaced then you should use TFF which I did?
Is there any way to find out if the source is TFF or BFF? -
Been through this a few times earlier. Load this script and observe frames with motion in VirtualDub, one frame at a time:
AssumeTFF().SeparateFields()
If you see smooth motion, the field order is TFF. If motion is back and forth from field to field, then it's BFF().Last edited by sanlyn; 26th Mar 2014 at 07:06.
-
Methinks that whoever did this earlier deinterlace/reinterlace/encode screwed up a bit and gave you some jaggies on angular lines that you don't want. A fairly clean vid for a change, all I used was MCTemporalDenosie, Deblock_QED, and some light TemporalSoften. But your black levels, contrast and gamma are way off:
[Attachment 16962 - Click to enlarge]
Adding red was good, but you also need some blue. Everybody's orange without it.Last edited by sanlyn; 26th Mar 2014 at 07:07.
Similar Threads
-
How to Fix Horizontal Jitter with AviSynth?
By VideoFanatic in forum RestorationReplies: 2Last Post: 26th Jan 2014, 22:52 -
How to fix speedup with AviSynth?
By VideoFanatic in forum RestorationReplies: 66Last Post: 29th Aug 2013, 12:41 -
How to fix ghosting / tracing with Avisynth?
By VideoFanatic in forum RestorationReplies: 2Last Post: 18th Mar 2013, 18:25 -
Video is Too Dark even after Brightening - How to fix with Avisynth?
By VideoFanatic in forum RestorationReplies: 13Last Post: 28th Dec 2012, 09:55 -
Video Encoding, MeGui + AviSynth fuzzy picture
By shorto in forum Video ConversionReplies: 8Last Post: 21st Mar 2010, 18:07