I'm currently attempting to upscale my collection of old anime DVDs into 1080p using VapourSynth. It's going well, except I have the issue of very noticeable combing of originally non-combed lines post-deinterlacing. My process is to first use MeGUI to deinterlace before upscaling with Waifu2x-caffe. What I'm having trouble with is finding a code block for MeGUI that will decomb the lines that need it and leave the non-combed lines and non-ghosted frames untouched.
RAW:
[Attachment 57817 - Click to enlarge]
Deinterlaced:
[Attachment 57818 - Click to enlarge]
Current MeGUI Code (Using QTGMC):
Code:LoadPlugin("E:\MeGUI-2913-64\TDeint.dll") LoadPlugin("E:\MeGUI-2913-64\RgTools.dll") LoadPlugin("E:\MeGUI-2913-64\nnedi3.dll") LoadPlugin("E:\MeGUI-2913-64\DePanEstimate.dll") LoadPlugin("E:\MeGUI-2913-64\DePan.dll") LoadPlugin("E:\MeGUI-2913-64\mvtools2.dll") LoadPlugin("E:\MeGUI-2913-64\masktools2.dll") <input> <deinterlace> <crop> <resize> <denoise> import("E:\MeGUI-2913-64\SMDegrain.avsi") import("E:\MeGUI-2913-64\QTGMC.avsi") QTGMC( Preset="Slow", SourceMatch=3, Lossless=2, TR2=2 ) SelectEven()
+ Reply to Thread
Results 1 to 10 of 10
-
-
Normally a cartoon or anime DVD should be IVTCed, not deinterlaced
If you use QTGMC and SelectEven, the framerate will be wrong, playback jerky
Did you try TFM and TDecimate ?
If you have a tricky source, post a cut sample of the source -
I'm sorry to say that I'm very amateur when it comes to kind of stuff, and I'm not really sure what IVTC, TFM, or TDecimate are, much less how to use them. I would post a source sample, but this particular footage is from an ecchi series, and all the problematic segments feature large amounts of nudity.
-
Upon further study, I feel like using TDeintMod with VapourSynth would work better, but I'm unsure how/if I should tweak the example script given by the mod-maker. Judging from this example clip, what you suggest I use as the command line, assuming I should change it at all?
-
Nevermind, I figured it out. For anyone else wondering, here are the two extra DLLs you need. I extracted them into the "...\DGDecode\x64" folder along with the provided DGDecode.dll
Template Script:
Code:LoadPlugin("...\DGDecode\x64\DGDecode.dll") LoadPlugin("...\DGDecode\x64\TDeint.dll") LoadPlugin("...\DGDecode\x64\TIVTC.dll") MPEG2Source("__vid__") TFM() TDecimate() #Crop(left, top, -right, -bottom) Crop(0, 0, -0, -0) #Uncomment the below line if your framerate is not the usual 23.976; #the current input will have a framerate of 29.970 (the standard for most NTSC files) #AssumeFPS(30000, 1001, false)
Last edited by AOmundson; 15th Mar 2021 at 22:15.
-
Similar Threads
-
Getting strange Horizontal Lines during capture (not deinterlacing related)
By Singhman in forum Capturing and VCRReplies: 2Last Post: 19th May 2020, 10:52 -
AviSynth script error on meGUI
By vancew90 in forum EditingReplies: 16Last Post: 16th Jan 2019, 06:42 -
Creating AVS script in MeGui
By Manxsee in forum Video ConversionReplies: 2Last Post: 12th Jun 2018, 12:24 -
Creating AVS script in MeGui . .
By Manxsee in forum Newbie / General discussionsReplies: 1Last Post: 12th Jun 2018, 11:31 -
AviSynth: Weird deinterlacing issue causing 'big' interlace lines to appear
By SMGJohn in forum RestorationReplies: 15Last Post: 9th Jul 2016, 08:42