I'm dealing with a cartoon DVD here. It's 29.97 interlaced, but telecined. I've been able to use this on all of the episodes so far:
But on the last 2 episodes I've had trouble.Code:TFM(D2V="%source_file%") TDecimate(Mode=1)
If I use the built-in IVTC script in StaxRip (Telecide(guide = 1).Decimate()) the output is mostly OK, but has some interlacing:
If I use the TFM/TDecimate code, there is ghosting and interlacing everywhere:
Sample of VOB:
https://mega.nz/#!DzIFkAQD!77z8SnN6X3gnsqeGrIzDaSxTgAZjI0VmRuB16sKOqlU
Any help on dealing with this? Using x64 StaxRip.
+ Reply to Thread
Results 1 to 9 of 9
-
-
I don't think I see any of that. A simple:
MPEG2Source("Test.d2v")
TFM().TDecimate(Mode=1)
seems fine. Perhaps you have the wrong field order in the uncut episode? A few of the scene changes look funky, but I got this with the script above: -
-
I get the same result as manono with:
Do you have a colorspace conversion somewhere in your script? Something like ConvertToYV12()? What you're seeing is classic interlaced YV12 converted to something else as if it's progressive. Any other filters? Post your entire script.Code:Mpeg2Source("VTS_01_1.demuxed (1).d2v") TFM(d2v="VTS_01_1.demuxed (1).d2v") TDecimate() -
I get the same as manono and jagabo too.
Your artifacts look like progressive chroma upsampling errors while it' s still interlaced (before IVTCing) .
Post the log file for clues, there might be other stuff staxrip is doing behind your back that you are unaware of -
Code:
LoadPlugin("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\avs\masktools2\masktools2.dll") LoadPlugin("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\avs\MedianBlur2\MedianBlur2.dll") LoadPlugin("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\avs\modPlus\modPlus.dll") LoadPlugin("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\avs\RgTools\RgTools.dll") LoadPlugin("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\avs\Decomb\Decomb.dll") Import("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\avs\DehaloAlpha\Dehalo_alpha.avsi") LoadPlugin("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\both\KNLMeansCL\KNLMeansCL.dll") LoadPlugin("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\avs\MPEG2DecPlus\MPEG2DecPlus.dll") LoadPlugin("J:\StaxRip-x64-2.0.0.0\Apps\Plugins\avs\TIVTC\TIVTC.dll") MPEG2Source("VTS_01_1.d2v") Crop(4, 2, -6, -0) TFM().TDecimate(Mode=1) KNLMeansCL(D = 1, A = 1, h = 4, device_type="auto") DeHalo_alpha_mt(rx=2.0, ry=2.0, darkstr=1.0, brightstr=1.0, lowsens=50, highsens=50, ss=1.5) -
The reason is the crop. Mod4 height restrictions for interlaced YV12
http://avisynth.nl/index.php/Crop
Move the crop below the IVTC line
Similar Threads
-
HandBrake: Ghosting/Interlacing issues? First time this has happened to me.
By GoodLucker in forum Video ConversionReplies: 3Last Post: 12th Oct 2017, 20:14 -
TMPGEnc Cartoon Settings
By Button030654 in forum Video ConversionReplies: 0Last Post: 31st Aug 2016, 20:14 -
NTSC Ghosting & Interlacing
By xuguang_he in forum RestorationReplies: 4Last Post: 26th Jun 2015, 21:44 -
Help Properly De-interlacing PAL Cartoon
By TubeBar in forum Newbie / General discussionsReplies: 23Last Post: 26th May 2014, 08:21 -
Frame Blending/Ghosting/Bad Interlacing Help
By EddyBund in forum RestorationReplies: 7Last Post: 2nd Jan 2014, 14:03






Quote

