IVTC Issues With Neon Genesis Evangelion Platinum Thinpak

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
User avatar
DaCoolGohan
Joined: Tue Dec 04, 2001 5:46 am
Status: I am the only one around here...
Location: Cincinnati, Oho
Org Profile

IVTC Issues With Neon Genesis Evangelion Platinum Thinpak

Post by DaCoolGohan » Wed Feb 06, 2008 12:56 pm

So anyway, I have had the same script for NGE Platinum for a while and never noticed interlacing but I just re-ripped it and when I looked at my AVS files I saw interlacing remnant still left images. Its mostly noticeable in high motion areas where it is panning or when someone is talking and you can see it on the mouth. I have tried a few different methods suggested in the guides and I keep coming up empty on a good solution.

Here is what the interlacing looks like
Image

and I am using this script for IVTC with AVISynth 2.5

mpeg2source("E:\AMV Footage\NGEP\NGEP Volume 1.d2v")
ConvertToYV12()
Telecide(order=1,post=2,blend=true,vthresh=30,back=1)
Decimate(cycle=5,mode=2,quality=3)

Has anyone else encountered this same problem and also resolved the issue? Any help is greatly appreciated.

User avatar
Qyot27
Surreptitious fluffy bunny
Joined: Fri Aug 30, 2002 12:08 pm
Status: Creepin' between the bullfrogs
Location: St. Pete, FL
Contact:
Org Profile

Post by Qyot27 » Wed Feb 06, 2008 1:09 pm

Well, it mostly stopped for me when I stopped using Telecide and Decimate and switched to TIVTC (TFM and TDecimate). Currently I use that plus an additional tidbit concerning TDeint gleaned from the beta guides:

Code: Select all

MPEG2Source("ep6_1.d2v", ipp=true, cpu=4)
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(order=-1,mode=5,PP=7,field=-1,slow=2, clip2=deint)
TDecimate(mode=1)
It is slow (then again my comp is almost 7 years old) but perhaps the most thorough job I've ever seen from an IVTC or deinterlacing script. It also seems to be pretty versatile - I've used it on several different sources and it worked fine, although Eva Platinum isn't one of the ones I tried (and while I would assume that there aren't any differences in the mastering between the original and the thinpak, I have the original).

Requires TIVTC and TDeint, which are in the beta AMVapp or from tritical's website:
http://bengal.missouri.edu/~kes25c/

User avatar
DaCoolGohan
Joined: Tue Dec 04, 2001 5:46 am
Status: I am the only one around here...
Location: Cincinnati, Oho
Org Profile

Post by DaCoolGohan » Wed Feb 06, 2008 1:11 pm

Yeah I already tried using the new beta way of doing it and it didn't work but I think I may have done something wrong so I will attempt to do it again. I don't believe there is anything different with the Thinpak its just lower quality and missing some features that the original version has. Do you use the default settings or do you add anything extra to your scripts?

User avatar
DaCoolGohan
Joined: Tue Dec 04, 2001 5:46 am
Status: I am the only one around here...
Location: Cincinnati, Oho
Org Profile

Post by DaCoolGohan » Wed Feb 06, 2008 1:12 pm

nvm I didn't read what your code was, discard the last part of my last post

User avatar
DaCoolGohan
Joined: Tue Dec 04, 2001 5:46 am
Status: I am the only one around here...
Location: Cincinnati, Oho
Org Profile

Post by DaCoolGohan » Wed Feb 06, 2008 1:18 pm

tried that and it actually worked a lot better, now all I have to focus on is some dotcrawl remnants and mosquito noise, thanks for the help.

Locked

Return to “AviSynth Help”