Log in

View Full Version : Error with avs script


TheSeeker
21st August 2004, 01:27
what wrong with this script.. .its not working.

#------------------
# AVS File Created by DVD Rebuilder
# VOBID:01, CELLID:01
#------------------
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3dg.dll")
mpeg2source("D:\RIP\D2VAVS\V01.D2V",idct=7)
trim(0,2780)
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\PeachSmoother.dll")
ConvertToYUY2()
PeachSmooth(45, 25, FALSE, 0, FALSE, FALSE)


Getting an unrecognized exception on line 6. Any help appreciated. thanks.

Manao
21st August 2004, 08:27
The sixth line is the one with mpeg2source ? In that case, check that your path is correct, and that you didn't move the vob files after creating the d2v file ( because it use an absolute path to point to the vob files )

Appart from that, you should load all your plugins at the beginning of your script, but I don't know if it can be the issue here.

To be sure the issue is with mpeg2source, try to keep only the six first lines, to see what happens.

TheSeeker
23rd August 2004, 14:33
i think i figured this one out. Instead of peachsmooth() to call the function its supposed to be peachsmoother() with the add er.