Attepmting 2-pass IVTC, error

If you have questions about compression/encoding/converting look here.
Locked
User avatar
meleechampion
Joined: Fri Mar 03, 2006 11:05 pm
Status: wtf is a jabber address
Org Profile

Attepmting 2-pass IVTC, error

Post by meleechampion » Thu Dec 18, 2008 7:03 pm

Thought I'd try to do this method, just to try something different.

First of all, the script that makes the first pass is missing the tdeint declaration

Code: Select all

MPEG2Source  ("C:\yourfolder\blah.d2v")
TFM(cthresh=4, slow=2, clip2=deint, output="C:\yourfolder\something.tfm")
TDecimate(mode=1, output="C:\yourfolder\something.dec")
Crop(0,0,4,2) 
amended to

Code: Select all

mpeg2source("C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.d2v")
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, slow=2, clip2=deint, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.tfm")
TDecimate(mode=1, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.dec")
Crop(0,0,4,2)
worked fine. I suppose, it made the .dec and .tfm files just fine.

But then when I try to use the next script (editied to use my filepaths)

Code: Select all

MPEG2Source  ("C:\yourfolder\blah.d2v")
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(pp=0, clip2=deint, input="C:\yourfolder\something.tfm") #set pp=6 after editing
TDecimate(input="C:\yourfolder\something.dec") 
I get the following error message when I try to open the avs file in VirtualDub
Image

Any help you can provide is very much appreciated.

User avatar
EvaFan
Joined: Sun Mar 21, 2004 10:25 pm
Status: (*゚▽゚)o旦~ ー乾杯ー♪
Location: Somerset, KY
Org Profile

Re: Attepmting 2-pass IVTC, error

Post by EvaFan » Fri Dec 19, 2008 12:30 am

I have little to no experience with TFM but the error stats:

"Input file does not match that of the current clip"

The input file doesn't match... Make sure spelling, pathing, etc is correct?
"The people cannot be [...] always, well informed. The part which is wrong will be discontented, in proportion to [...] the facts they misconceive. If they remain quiet under such misconceptions, it is lethargy, the forerunner of death to public liberty. What country can preserve its liberties, if it's rulers are not warned [...] that this people preserve the spirit of resistance? The tree of liberty must be refreshed from time to time, with the blood of patriots and tyrants."-Thomas Jefferson

User avatar
Zarxrax
Joined: Sun Apr 01, 2001 6:37 pm
Contact:
Org Profile

Re: Attepmting 2-pass IVTC, error

Post by Zarxrax » Fri Dec 19, 2008 11:35 am

Hmmm, that's a new one on me... not sure what would cause it. Have you changed the d2v file in any way? Or maybe you accidentally used the wrong episode in the 2nd pass?

User avatar
meleechampion
Joined: Fri Mar 03, 2006 11:05 pm
Status: wtf is a jabber address
Org Profile

Re: Attepmting 2-pass IVTC, error

Post by meleechampion » Fri Dec 19, 2008 2:47 pm

I double checked my filepaths, they match. I've only tried this on one .d2v file (it's the only one in this folder anyway) and I don't think I even know how to change the d2v file. Unless you mean make a new one with the same name in DGindex, which I didn't do either.

A strange development, I just made scripts without the "better postprocessing" adjustments, and it all worked fine.

If it didn't take a half hour (the .vob is 6.5GB!) to save the avi that makes the dec and tfm files, I'd try it all again from step 1 with the "better postprocessing" lines.

User avatar
post-it
Joined: Wed Jul 17, 2002 5:21 am
Status: Hunting Tanks
Location: Chilliwack - Fishing
Org Profile

Re: Attepmting 2-pass IVTC, error

Post by post-it » Fri Dec 19, 2008 4:33 pm

meleechampion wrote:Thought I'd try to do this method, just to try something different.

First of all, the script that makes the first pass is missing the tdeint declaration

Code: Select all

MPEG2Source  ("C:\yourfolder\blah.d2v")

TFM(cthresh=4, slow=2, clip2=deint, output="C:\yourfolder\something.tfm")

TDecimate(mode=1, output="C:\yourfolder\something.dec")
Crop(0,0,4,2)
 
amended to

Code: Select all

mpeg2source("C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.d2v")

deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, slow=2, clip2=deint, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.tfm")

TDecimate(mode=1, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.dec")

Crop(0,0,4,2)
worked fine. I suppose, it made the .dec and .tfm files just fine.

But then when I try to use the next script (editied to use my filepaths)

Code: Select all

MPEG2Source  ("C:\yourfolder\blah.d2v")
[code]MPEG2Source  ("C:\yourfolder\blah.d2v")

deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, slow=2, clip2=deint, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.tfm")
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(pp=0, clip2=deint, input="C:\yourfolder\something.tfm") #set pp=6 after editing


TDecimate(mode=1, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.dec")
TDecimate(mode=1, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.dec")

Crop(0,0,4,2)
Crop(0,0,4,2) 
I get the following error message ...
in out out VS in in out

User avatar
meleechampion
Joined: Fri Mar 03, 2006 11:05 pm
Status: wtf is a jabber address
Org Profile

Re: Attepmting 2-pass IVTC, error

Post by meleechampion » Fri Dec 19, 2008 5:28 pm

Hmm... thats not what I have.

Here are the two scripts that don't seem to work, verbatim.

Code: Select all

mpeg2source("C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.d2v")
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(cthresh=4, slow=2, clip2=deint, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.tfm")
TDecimate(mode=1, output="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.dec")
Crop(0,0,4,2)

Code: Select all

mpeg2source("C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.d2v")
deint = TDeint(mode=2, mtnmode=3, blim=100)
TFM(pp=0, clip2=deint, input="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.tfm") #set pp=6 after editing
TDecimate(input="C:\GURREN_LAGANN_01\VIDEO_TS\VTS_06_1.dec") 

Locked

Return to “Conversion / Encoding Help”