Log in

View Full Version : avisynth issue (avisynth open failure: evaluate: system exception access violation)


A Prophet of Fortune
21st February 2010, 13:54
I'm using AutoGK to convert some movies and on one particular file I always get the same error message:

http://img641.imageshack.us/img641/5940/avisyntherror.jpg

Log is as follows:

[21/02/2010 11:44:47 PM] AutoGK 2.55
[21/02/2010 11:44:47 PM] OS: Windows Vista (6.1.7600).2
[21/02/2010 11:44:47 PM] Job started.
[21/02/2010 11:44:47 PM] Input file: C:\Users\Justin\Videos\Encoding Tasks\Episode 4 - Heaven and Hell\VIDEO_TS\VTS_01_0.IFO
[21/02/2010 11:44:47 PM] Output file: C:\Users\Justin\Videos\Encoded Tasks\Episode 4 - Heaven and Hell.avi
[21/02/2010 11:44:47 PM] Output codec: XviD
[21/02/2010 11:44:47 PM] Audio 1: English AC3 6ch
[21/02/2010 11:44:47 PM] Subtitles: none
[21/02/2010 11:44:47 PM] Format: AVI
[21/02/2010 11:44:47 PM] Target size: 700Mb
[21/02/2010 11:44:47 PM] Audio 1 settings: Auto
[21/02/2010 11:44:47 PM] Started encoding.
[21/02/2010 11:44:47 PM] Demuxing and indexing.
[21/02/2010 11:45:58 PM] Processing file: C:\Users\Justin\Videos\Encoding Tasks\Episode 4 - Heaven and Hell\VIDEO_TS\VTS_01_1.VOB
[21/02/2010 11:45:58 PM] Processing file: C:\Users\Justin\Videos\Encoding Tasks\Episode 4 - Heaven and Hell\VIDEO_TS\VTS_01_2.VOB
[21/02/2010 11:45:58 PM] Processing file: C:\Users\Justin\Videos\Encoding Tasks\Episode 4 - Heaven and Hell\VIDEO_TS\VTS_01_3.VOB
[21/02/2010 11:45:58 PM] Processing file: C:\Users\Justin\Videos\Encoding Tasks\Episode 4 - Heaven and Hell\VIDEO_TS\VTS_01_4.VOB
[21/02/2010 11:45:58 PM] Source resolution: 720x480
[21/02/2010 11:45:58 PM] Found NTSC source.
[21/02/2010 11:45:58 PM] Source aspect ratio: 4:3
[21/02/2010 11:45:58 PM] Analyzing source.
*************************************
EXCEPTION: Cannot open file "C:\Users\Justin\Videos\Encoded Tasks\agk_tmp\interlace.log". The system cannot find the file specified
*************************************
[21/02/2010 11:48:12 PM] Job finished. Total time: 3 minutes 25 seconds
====================================================


Any help anyone can offer would be greatly appreciated. Thanks.

IanB
21st February 2010, 21:57
Telling us what Line 7 of C:\Users\Justin\Videos\Encoded Tasks\agk_tmp\_.avs contains might be illuminating (post the whole script).

A Prophet of Fortune
26th February 2010, 06:02
Telling us what Line 7 of C:\Users\Justin\Videos\Encoded Tasks\agk_tmp\_.avs contains might be illuminating (post the whole script).


Here we go:



LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\decomb.dll")
file="C:\Users\Justin\Videos\Encoded Tasks\agk_tmp\interlace.log"
global sep="-"
function IsMoving() {
global b = (diff < 1.0) ? false : true}
mpeg2source("C:\Users\Justin\Videos\Encoded Tasks\agk_tmp\Episode 4 - Heaven and Hell.d2v")
c = SelectRangeEvery(180,18)
global clip = c
c = WriteFile(c, file, "a", "sep", "b")
c = FrameEvaluate(c, "global a = IsCombed(clip, 32)")
c = FrameEvaluate(c, "IsMoving")
c = FrameEvaluate(c,"global diff = 0.50*YDifferenceFromPrevious(clip) + 0.25*UDifferenceFromPrevious(clip) + 0.25*VDifferenceFromPrevious(clip)")
crop(c,0,0,4,4)

A Prophet of Fortune
1st March 2010, 03:28
No ideas at all?

MatLz
1st March 2010, 03:38
No ideas at all?Not really...
As autogk use the loaded plugins, try to remove all the plugins in the Avisynth plugins directory.
I had that kind of problem with bad versions of warpsharp or other bad builded filters in the past.

Gavino
1st March 2010, 11:18
No ideas at all?
Do you still get the problem if you reduce your script to:
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
mpeg2source("C:\Users\Justin\Videos\Encoded Tasks\agk_tmp\Episode 4 - Heaven and Hell.d2v")

If so, either there is something strange about your source or there is a problem with mpeg2source.