JohnMK
14th September 2002, 02:20
VirtualDub finds an error in this script, and I can't seem to figure out why. I'm somewhat new to all this and would appreciate someone looking this over for me. It says the error is at line 22, which is interestingly, -- commented out by a #. Line 23 is "AVISource("hybrid.avi")"
#
# Created with Gordian Knot
#
# http://thewef.nav.to
#
# PLUGINS
# get them from http://users.win.be/dividee
LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\InverseTelecine.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\Avisynth_Spatial.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\GreedyHMA.dll")
#LoadPlugin("C:\WINDOWS\System32\vobsub.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\SimpleResize.dll")
#
# SOURCE
mpeg2source("C:\Documents and Settings\Chad\Desktop\In Progress\Star Trek - The Next Generation\301\301decomb.d2v")
#
# TRIM
#trim(startframe,endframe)
#
AVISource("hybrid.avi")
Telecide()
Decimate(mode=1,threshold=50)
#Telecide()
#Decimate(cycle=5)
# or use
#InverseTelecine(40,10,15)
#GreedyHMA(1,0,4,0,0,0,0,0)
#
# DEINTERLACING
#FieldDeinterlace()
# or use
#VerticalReduceBy2
# or maybe
#GreedyHMA(1,0,0,0,0,0,0,0)
#
# CROPPING
crop(6,1,707,476)
#
# SUBTITLES
#VobSub("FileName")
#
# RESIZING
BicubicResize(432,320,0,0.5)
<snip>
#
# Created with Gordian Knot
#
# http://thewef.nav.to
#
# PLUGINS
# get them from http://users.win.be/dividee
LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\InverseTelecine.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\Avisynth_Spatial.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\GreedyHMA.dll")
#LoadPlugin("C:\WINDOWS\System32\vobsub.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\SimpleResize.dll")
#
# SOURCE
mpeg2source("C:\Documents and Settings\Chad\Desktop\In Progress\Star Trek - The Next Generation\301\301decomb.d2v")
#
# TRIM
#trim(startframe,endframe)
#
AVISource("hybrid.avi")
Telecide()
Decimate(mode=1,threshold=50)
#Telecide()
#Decimate(cycle=5)
# or use
#InverseTelecine(40,10,15)
#GreedyHMA(1,0,4,0,0,0,0,0)
#
# DEINTERLACING
#FieldDeinterlace()
# or use
#VerticalReduceBy2
# or maybe
#GreedyHMA(1,0,0,0,0,0,0,0)
#
# CROPPING
crop(6,1,707,476)
#
# SUBTITLES
#VobSub("FileName")
#
# RESIZING
BicubicResize(432,320,0,0.5)
<snip>