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)
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)
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")
Any help you can provide is very much appreciated.