Log in

View Full Version : avisynth error


ssjkakaroto
3rd October 2002, 04:09
hi, does n1 know what could be causing this error??

Avisynth read error:
Aisynth: caught an access violation at 0x0113bbbf,
attempting to read from 0x06355000

heres my script:
#
# 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:\WINNT\System32\vobsub.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\SimpleResize.dll")
#
# SOURCE
mpeg2source("D:\vobs\ep1.d2v")
#
# TRIM
#trim(startframe,endframe)
#
# IVTC
Telecide()
Decimate(cycle=5)
# or use
#InverseTelecine(40,10,15)
#GreedyHMA(1,0,4,0,0,0,0,0)
#
# DEINTERLACING (1)
#FieldDeinterlace()
#
# CROPPING
crop(10,5,705,475)
#
# DEINTERLACING (2)
#VerticalReduceBy2
# or maybe
#GreedyHMA(1,0,0,0,0,0,0,0)
#
#
# DENOISING: choose one combination (or none)
# 1) little noise (fast)
TemporalSmoother(2,1)
#
# 2) medium noise (slow)
#SpatialSoftenMMX(1,4,6,false,false,4,4,6,8)
#TemporalSmoother(2)
#
# 3) heavy noise (very slow, you have been warned)
#SpatialSoftenMMX(2,4,6,false,false,4,4,6,8)
#TemporalSmoother(3)
#SpatialSoftenMMX(1,4,6,false,false,4,4,6,8)
#
# SUBTITLES
VobSub("D:\vobs\subs\vts_01_0")
#
# RESIZING
BicubicResize(640,480,0.333,0.333)
#
# BORDERS
#AddBorders(left,top,right,bottom)
#
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
#SelectRangeEvery(280,14)
#
# FOOL CCEnc
#ResampleAudio(44100)

thx in advance

Guest
3rd October 2002, 04:25
Try keeping your width after cropping to multiples of 4.

Richard Berg
3rd October 2002, 10:53
Something's reading past its buffer. Could you isolate which filter is causing the error and also note which version you're using?

sh0dan
3rd October 2002, 11:15
crop(10,5,705,475)

[EDIT] Oh - forgot, crop automatically wraps width to mod2 - It's crappy and should report an error. So follow the advice in the other posts


BTW, Good to see you back Richard!

manono
3rd October 2002, 11:18
Hi-

Try and put the VobSub line after Resize (you can test first by just commenting it out and see if it crashes then). And as neuron2 says, your cropping sucks (I wonder if that affects TempSmoother).

ssjkakaroto
3rd October 2002, 17:09
ok thx i'll try and post the results

ssjkakaroto
3rd October 2002, 17:29
i tried all of the above and they didnt work, but i discovered that it was decomb 4.00 rc 6 that was giving the error, after i commented it there were no errors, even with that crappy crop