mwillberg
15th April 2002, 20:02
Hello everybody,
I am trying to make an avs-script for my TV-caps, but I also need to use some VirtualDub-filter. I found out how to use "vdfilters.avs", but whenever I try to use flaxen's Cartoon-filter I get "Avisynth: caught an access violation at 0x01d61523, attempting to read from 0x02016000".
For reference, this is my script:
start=4250
com_start=24220
com_end=28970
end=41420
LoadPlugin("C:\PROGRA~1\Video\BITRAT~1\GORDIA~1.20\Avisynth_Spatial.dll")
LoadPlugin("C:\PROGRA~1\Video\BITRAT~1\GORDIA~1.20\GreedyHMA.dll")
LoadPlugin("C:\PROGRA~1\Video\BITRAT~1\GORDIA~1.20\mpeg2dec.dll")
Import("vdfilters.avs")
SegmentedAVISource("CAPTURE.AVI")
Trim(start,com_start)+Trim(com_end,end)
GreedyHMA(1,0,0,0,0,0,0,0)
ConvertToRGB()
VD_VHS(true,5,30,15,5,10,1,true,false,false,15,false,-1,0,false,false)
VD_CartoonTool(last,16,200,16)#also tried using "last" as first arg.
TemporalSmoother(2)
crop(5,3,710,566)
BilinearResize(480,352)
Everything works unless I use the Cartoon-filter, that leads to the exception described above.
Does anyone have any idea what the problem could be?
I am trying to make an avs-script for my TV-caps, but I also need to use some VirtualDub-filter. I found out how to use "vdfilters.avs", but whenever I try to use flaxen's Cartoon-filter I get "Avisynth: caught an access violation at 0x01d61523, attempting to read from 0x02016000".
For reference, this is my script:
start=4250
com_start=24220
com_end=28970
end=41420
LoadPlugin("C:\PROGRA~1\Video\BITRAT~1\GORDIA~1.20\Avisynth_Spatial.dll")
LoadPlugin("C:\PROGRA~1\Video\BITRAT~1\GORDIA~1.20\GreedyHMA.dll")
LoadPlugin("C:\PROGRA~1\Video\BITRAT~1\GORDIA~1.20\mpeg2dec.dll")
Import("vdfilters.avs")
SegmentedAVISource("CAPTURE.AVI")
Trim(start,com_start)+Trim(com_end,end)
GreedyHMA(1,0,0,0,0,0,0,0)
ConvertToRGB()
VD_VHS(true,5,30,15,5,10,1,true,false,false,15,false,-1,0,false,false)
VD_CartoonTool(last,16,200,16)#also tried using "last" as first arg.
TemporalSmoother(2)
crop(5,3,710,566)
BilinearResize(480,352)
Everything works unless I use the Cartoon-filter, that leads to the exception described above.
Does anyone have any idea what the problem could be?