I could really use some advice with a couple of encodes I'm struggling with at the moment.
The first one is an episode of a TV show. There are 5 seasons of this show and all episodes have been PAL progressive except one. The odd one out is interlaced with BFF which seems unusual as PAL is normally TFF in my experience.
I've tried deinterlacing with BFF, TFF, Bob with 50fps and decomb but nothing seems quite right. There is a slight judder no matter which way I encode, it's visible in the source but always looks worse when encoded.
I use RipBot264, MeGUI and sometimes Handbrake. I assume that I need to use MeGUI with an additional AVI Synth plugin but I'm really not sure what to use or how to set up the script.
I'm not very experienced with field blended sources which is what I assume is going on here. I guess it's been badly converted from NTSC?
The other two problem sources are PAL movies that exhibit a similar judder but I would like to solve this ne first and hopefully I can learn enough to sort the other two by myself.
I've attached a 10 second sample - would someone be kind enough to take a look and offer me some advice?
+ Reply to Thread
Results 1 to 11 of 11
-
-
This:
Code:Mpeg2Source("Sample.d2v") Yadif(mode=1) # or QTGMC() SRestore()
-
Thanks jagabo
A couple of questions:
Is it possible to resolve the stutter and keep the encode as PAL?
Will the audio still in in sync or do I need to slow it down?
Would this method also work on the my other source which is progressive?
Edit:
I downloaded SRestore.avs but MeGUI gives an error when I put it in the plugins folder. Do I have to do anything else to get it working?Last edited by duffbeer; 15th Nov 2015 at 10:10.
-
Yes, add AssumeFPS(25) to the end of that script.
If you add AssumeFPS(25) you'll need to speed up the audio by a factor of 25*1001/24000.
It would be a waste of time for videos that are already progressive. And deinterlacing progressive frames can only reduce their quality (ie, the deinterlacer may mistake true detail for interlacing and screw it up).
See the SRestore docs for the other required filters.
http://avisynth.nl/index.php/Srestore
Required Plugins
Latest version of the following plugins are recommended unless stated otherwise.
MaskTools2
Optional plugins:
TIVTC - (only for cache>0, not default)
RemoveGrain v1.0b - (only for double-blend-removal, not default)
Average - (only for double-blend-removal, not default)
GRunT (only for Srestore v2.7f or greater) -
Sorry I should have been clearer.
Will it work without deinterlacing if the source is a movie that is progressive and 25fps?
Thanks for the link to the SRestore wiki page. That was where I downloaded the SRestore.avsi plugin. I also downloaded MaskTools2 at the same time.
I put them both in the MeGUI_2507_x86\tools\avisynth_plugin folder but I still get an error message saying "There is no function called SRestore".
Information seems vary rare about how to set up SRestore. Can you tell me what I did wrong?
Also, should the SRestore file be an avsi? I thought the plugins were all dll's? -
-
OK I've got it working - thanks for your help.
My other two problem encodes are both progressive but they have the same judder. If I can't use SRestore on a progressive source then what else can I use?
They're both PAL DVDs - one is a documentary and one is a movie. As I said earlier I guess they were converted badly from an NTSC source but I'm not sure.
The judder is visible when viewed on my TV with a DVD player so it's definitely a bad source disc. I would like to encode these to remove the judder but they are both progressive. -
I'd have to see a sample to say for sure.
If the judder comes from duplicate frames you can use TDecimat() to remove the dupilcates. For example, if 24 fps was made into 25 fps by duplicating one frame every 24 frames you would see one jerk every second. That could be fixed with TDecimate(Cycle=25, CycleR=1).
If 29.97i was blend deinterlaced then decimated to 25 fps you're probably out of luck. -
Good news first. The SRestore filter worked perfectly! Thanks for all your advice.
Now to solve the progressive source problem...I tried TDecimate(Cycle=25, CycleR=1) but it still has a slight judder. I've attached a sample for you to see what I mean.
Is there anything else I can try to fix this encode. -
That's a strange case. It's missing about every 23rd or 24th frame. You might expect that from a PAL source that's been decimated to NTSC (25 fps to 24 fps by dropping every 25 frame). But this is a PAL video. Maybe it was originally PAL, converted to NTSC via decimation, then sped up to make it PAL again.
You can use InsertFramesMC() to replace those missing frames with motion interpolation. But it will take a long time to locate all the missing frames:
Code:import("C:\Program Files (x86)\AviSynth\plugins\ReplaceFramesMC.avs") Mpeg2Source("Sample2.demuxed.d2v", CPU2="ooooxx", Info=3) InsertFramesMC(7, 1) InsertFramesMC(32, 1) # 25 InsertFramesMC(56, 1) # 24 InsertFramesMC(80, 1) # 24
Last edited by jagabo; 17th Nov 2015 at 07:04.
Similar Threads
-
Putting Two Logo in Video Using AVI Synth
By F37 in forum EditingReplies: 9Last Post: 26th Jan 2014, 14:48 -
What causes judder and what can be done about it?
By drstew12 in forum DVD & Blu-ray PlayersReplies: 19Last Post: 27th Nov 2013, 19:33 -
Help to get rid of duplicate frames on PAL source
By rhaz in forum Video ConversionReplies: 25Last Post: 9th Nov 2013, 10:13 -
DVD source quality. PAL vs NTSC
By ffxdean in forum Video ConversionReplies: 1Last Post: 6th May 2013, 10:06 -
PAL converted from NTSC source - Ghosting and interlacing
By OngekibouRekka in forum Video ConversionReplies: 7Last Post: 3rd Dec 2011, 12:20