PDA

View Full Version : Avisynth read error:


snake-boy
5th June 2002, 01:17
Hi,

After following the Gordian Knot guide (for DiVX5) to the letter, I manage to get to the final stage of having VirtualDub load my frameserving file. I setup the codec as instructed, but as soon as I start the batch processing, I get the following error:

Avisynth read error:
Avisynth: caught access violation at 0x011cbbbf,
attempting to read from 0x03d56000

In case there was a sharing violation somewhere, I rebooted, and running only VirtualDub, I still get the same error. Having followed the guide to the letter, I am baffled as to what to try next, and would appreciate any suggestions anyone can offer.

If there are any further details I can provide that would help to isolate the problem, please let me know.

Many thanks

-snake

aleksander
5th June 2002, 08:18
Please post all your settings (from .avs and codec)
Also, try installing the latest version of VDub - 1.4.10

take care

snake-boy
5th June 2002, 17:24
Hi,
Ok, here's the settings you requested. I am using VirtualDub V1.4.10.

esca2a.avs:
----------
#
# Created with Gordian Knot
#
# http://thewef.nav.to
#
# PLUGINS
# get them from http://users.win.be/dividee
LoadPlugin("F:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
LoadPlugin("F:\PROGRA~1\GORDIA~1\decomb.dll")
#LoadPlugin("F:\PROGRA~1\GORDIA~1\InverseTelecine.dll")
#LoadPlugin("F:\PROGRA~1\GORDIA~1\Avisynth_Spatial.dll")
#LoadPlugin("F:\PROGRA~1\GORDIA~1\GreedyHMA.dll")
#LoadPlugin("C:\WINDOWS\SYSTEM\vobsub.dll")
#LoadPlugin("F:\PROGRA~1\GORDIA~1\SimpleResize.dll")
#
# SOURCE
mpeg2source("F:\temp\esca2.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
#FieldDeinterlace()
# or use
#VerticalReduceBy2
# or maybe
#GreedyHMA(1,0,0,0,0,0,0,0)
#
# CROPPING
crop(4,2,709,475)
#
# SUBTITLES
#VobSub("FileName")
#
# RESIZING
BilinearResize(608,448)
#
# 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)
#
# 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)


Codec: (DIVX 5.02 pro)
----------------------

Two pass, First pass
Bitrate: 1895
Use MV file = Yes
Use Quarter Pixel = No
Use GMC = Yes
Use Bidirectional Encoding = Yes
Config CLI: -b21 1895 -key 300 -log "c:\divx.log" -mv "c:\mvinfo.bin" -b -g -dr 12,2,2000,10,20 -sc 50 -pq 5

Two pass, Second pass
Bitrate: 1895
Use MV file = Yes
Use Quarter Pixel = No
Use GMC = Yes
Use Bidirectional Encoding = Yes
Config CLI: -b22 1895 -key 300 -log "c:\divx.log" -mv "c:\mvinfo.bin" -b -g -dr 12,2,2000,10,20 -sc 50 -pq 5

Hope that helps...

-snake