Log in

View Full Version : AVS Loading Error


Trash Master
22nd September 2006, 01:51
Hi guys. I can't figure this out. I have a friend who usually assists me on my scripts but he is not here. I would appreciate it if you can point me in the right direction. I am capping from TV with the HuffYUV patch. Here is my script I am using. I took the paths out to make it easier to read.======================================
#LoadPlugin("C:\DGDecode.dll")
LoadPlugin("C:\decomb.dll")
LoadPlugin("C:\Deen.dll")
LoadPlugin("C:\cnr2k.dll")
loadplugin("C:\degrainmedian.dll")
loadplugin("C:\UnDot.dll")
loadplugin("C:Temporalcleaner.dll")
loadplugin("C:\fluxsmooth.dll")
avisource("D:\TV Caps\yo.avi)
converttoyv12()
DeGrainMedian(limitY=5,limitUV=7,mode=0)
FieldDeinterlace(blend=true,threshold=7,dthreshold=7)
BicubicResize(512,384)
temporalsoften(3,3,5,15,2)
Deen("a3d", 2, 10, 10, 40)
==============================================
The error I get now is D:\TV Caps\Huffyscript.avs\line 15 colum 9. What little I know to me that is the DEEN line @ the letter D. If you need anymore info I will be glad to provide it. Thanks guys.

unskinnyboy
22nd September 2006, 04:41
And what is the exact error you are getting? Can you post a screenshot of the error?

Fizick
22nd September 2006, 05:05
try to comment whole DEEN line.

Trash Master
22nd September 2006, 16:03
Here is the pic you requested.
http://i45.photobucket.com/albums/f92/JoshtheRipper/AVIsynthError.jpg

Trash Master
22nd September 2006, 16:20
I figured it out. If you check out my mistake here. avisource("D:\TV Caps\yo.avi) I have no quotation mark after yo.avi. Now could someone explain why having that missing " would affect the line with deen. Have a good one and thanks for the help.

Guest
22nd September 2006, 17:29
Now could someone explain why having that missing " would affect the line with deen. That's easy. You opened a string on the avisource() line and it doesn't get closed until another " is seen on the Deen line. So all the lines inbetween are considered to be part of the path to your AVI.

Trash Master
22nd September 2006, 17:48
Thanks neuron2 :)