Which is the better IVTC script?

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
SegNin
Joined: Wed Jan 31, 2007 10:28 pm
Org Profile

Which is the better IVTC script?

Post by SegNin » Thu Sep 01, 2016 4:14 pm

Found two versions of an avs script for telecined anime in the tutorial section.

This one's older: http://www.animemusicvideos.org/guides/ ... ssive.html
MPEG2Source ("C:\yourfolder\blah.d2v")
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, slow=2, clip2=deint)
TDecimate(mode=1)

This one's newer: http://www.animemusicvideos.org/guides/ ... ssive.html
MPEG2Source ("C:\yourfolder\blah.d2v")
TFM(slow=2, pp=5, clip2=TDeint(mode=2, type=3))
TDecimate()

Before you say go with the newer one, notice how that one doesn't have mode=1 for TDecimate?
Because I thought that parameter was required for anime/cartoon sources.
So, I'm not sure about the newer one. Should I use that one with or without mode = 1? Could the older one be the better choice? A little help here, please.

User avatar
l33tmeatwad
Joined: Wed Feb 16, 2005 3:22 pm
Location: Christiansburg, VA
Contact:
Org Profile

Re: Which is the better IVTC script?

Post by l33tmeatwad » Fri Sep 02, 2016 8:19 am

It is actually a preference thing, some people prefer the older one over the newer one. IIRC, TIVTC has more features overall but some claim it doesn't handle some sources quite as well.
Software & Guides: AMVpack | AMV 101 | AviSynth 101 | VapourSynth 101
PixelBlended Studios: Website | Twitter | YouTube

SegNin
Joined: Wed Jan 31, 2007 10:28 pm
Org Profile

Re: Which is the better IVTC script?

Post by SegNin » Fri Sep 02, 2016 9:02 am

Should I use mode = 1 for Tdecimate with the newer one even though the tutorial has it blank there?
The source is anime.

User avatar
Scintilla
(for EXTREME)
Joined: Mon Mar 31, 2003 8:47 pm
Status: Quo
Location: New Jersey
Contact:
Org Profile

Re: Which is the better IVTC script?

Post by Scintilla » Sat Sep 03, 2016 5:47 am

l33tmeatwad wrote:It is actually a preference thing, some people prefer the older one over the newer one. IIRC, TIVTC has more features overall but some claim it doesn't handle some sources quite as well.
But both of those examples use TIVTC -- and by the way, does anyone know why both of them don't just use TFM(d2v="C:\yourfolder\blah.d2v")? Shouldn't getting hints from the D2V file make the field matching far more accurate?
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

User avatar
Kionon
I ♥ the 80's
Joined: Fri Mar 02, 2001 10:13 pm
Status: Ayukawa MODoka.
Location: I wonder if you know how they live in Tokyo... DRIFT, DRIFT, DRIFT
Contact:
Org Profile

Re: Which is the better IVTC script?

Post by Kionon » Sat Sep 03, 2016 7:00 am

I'm pretty sure I've only used the older one. *shrug*
ImageImage
That YouTube Thing.

SegNin
Joined: Wed Jan 31, 2007 10:28 pm
Org Profile

Re: Which is the better IVTC script?

Post by SegNin » Sat Sep 03, 2016 9:32 am

Alright, after reading through this guide and gaining a better understanding of those settings, I've settled on this as my script.
What do you guys think?

mpeg2source("C:\v\6.d2v")
LoadPlugin("C:\Users\J\Desktop\MAIN\OTHER PROGRAMS\MeGUI_2525_x86\tools\avisynth_plugin\TDeint.dll")
TFM(d2v = "C:\v\6.d2v", cthresh=4, slow=2, clip2=TDeint(mode=2, type=3))
TDecimate(mode=1)

User avatar
l33tmeatwad
Joined: Wed Feb 16, 2005 3:22 pm
Location: Christiansburg, VA
Contact:
Org Profile

Re: Which is the better IVTC script?

Post by l33tmeatwad » Tue Sep 06, 2016 10:20 am

Scintilla wrote:
l33tmeatwad wrote:It is actually a preference thing, some people prefer the older one over the newer one. IIRC, TIVTC has more features overall but some claim it doesn't handle some sources quite as well.
But both of those examples use TIVTC -- and by the way, does anyone know why both of them don't just use TFM(d2v="C:\yourfolder\blah.d2v")? Shouldn't getting hints from the D2V file make the field matching far more accurate?
Geez, I totally derped that...
Software & Guides: AMVpack | AMV 101 | AviSynth 101 | VapourSynth 101
PixelBlended Studios: Website | Twitter | YouTube

Locked

Return to “AviSynth Help”