webwonk
16th January 2005, 23:03
Hey gang,
I'm trying to convert a pure NTSC video to 29.97 progressive fps for input to sorenson squeeze (flash video). This is my script:
------------------------------------
LoadPlugin("c:\Program Files\Avisynth 2.5\plugins\DGDecode.dll")
LoadPlugin("c:\Program Files\Avisynth 2.5\plugins\Tdeint.dll")
#LoadPlugin("c:\Program Files\Avisynth 2.5\plugins\TomsMoComp.dll")
video = MPEG2Source("c:\rdg\burn\left\left.d2v",cpu=6,iPP=true,idct=4)
#TomsMoComp(-1,5,1)
tdeint(mode=0,order=1,field=-1)
BilinearResize(480,360)
audio = WAVSource ("c:\rdg\burn\left\left.wav")
AudioDub (video,audio)
-----------------------------------------
No matter what I try, I get an Invalid arguments to function "tdeint" error; or when I # it out and try TomsMoComp I get the same thing. when I rem out both deinterlacers, it get the same error for bilinearresize. When I rem that out it works fine.
I've read the manuals for TDeint, TomsMoComp and AVISynth manual's section on resizing. I don't see my error. HELP.
Web
I'm trying to convert a pure NTSC video to 29.97 progressive fps for input to sorenson squeeze (flash video). This is my script:
------------------------------------
LoadPlugin("c:\Program Files\Avisynth 2.5\plugins\DGDecode.dll")
LoadPlugin("c:\Program Files\Avisynth 2.5\plugins\Tdeint.dll")
#LoadPlugin("c:\Program Files\Avisynth 2.5\plugins\TomsMoComp.dll")
video = MPEG2Source("c:\rdg\burn\left\left.d2v",cpu=6,iPP=true,idct=4)
#TomsMoComp(-1,5,1)
tdeint(mode=0,order=1,field=-1)
BilinearResize(480,360)
audio = WAVSource ("c:\rdg\burn\left\left.wav")
AudioDub (video,audio)
-----------------------------------------
No matter what I try, I get an Invalid arguments to function "tdeint" error; or when I # it out and try TomsMoComp I get the same thing. when I rem out both deinterlacers, it get the same error for bilinearresize. When I rem that out it works fine.
I've read the manuals for TDeint, TomsMoComp and AVISynth manual's section on resizing. I don't see my error. HELP.
Web