View Full Version : AutoGk Crash
Silverboy
18th January 2006, 21:10
Why if I try to convert an avi file Agk Crash?
I Know that Agk added support to Avi File with the version 2.00 but if I try to convert an .avi file Agk2.26 crash after 2 seconds. :confused:
http://img485.imageshack.us/img485/4421/agkerror0or.png
BigDid
18th January 2006, 22:13
Why if I try to convert an avi file Agk Crash?
I Know that Agk added support to Avi File with the version 2.00 but if I try to convert an .avi file Agk2.26 crash after 2 seconds...
Did you try renaming your avi source with dos-naming convention ? (no exotic char, no space etc...)
If no good could you post the log from the _.avs file (inside AGK folder), line 10 may give infos
Did
Silverboy
19th January 2006, 00:19
This is the avs file...
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\decomb.dll")
file="E:\Divx Elaborazioni in corso\agk_tmp\interlace.log"
global sep="-"
function IsMoving() {
global b = (diff < 1.0) ? false : true}
movie = DirectShowSource("E:\Divx Elaborazioni in corso\Naqoyqatsi.avi",25).KillAudio()
movie = isRGB(movie) ? ConvertToYUY2(movie) : movie
isYUY2(movie) ? ConvertToYV12(movie) : movie
c = SelectRangeEvery(18,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)
and this is the log...
[19/01/2006 0.17.26] AutoGK 2.26
[19/01/2006 0.17.26] OS: WinXP (5.1.2600).2
[19/01/2006 0.17.26] Job started.
[19/01/2006 0.17.26] Input file: E:\Divx Elaborazioni in corso\Naqoyqatsi.avi
[19/01/2006 0.17.26] Input codec: XviD
[19/01/2006 0.17.26] Source duration: 1h 25mn 44s 40ms
[19/01/2006 0.17.26] Output file: E:\Divx Elaborazioni in corso\Naqoyqatsi_agk.avi
[19/01/2006 0.17.26] Output codec: XviD
[19/01/2006 0.17.26] Audio 1: 106 Kbps MPEG1/2 L3 2ch
[19/01/2006 0.17.26] Subtitles: none
[19/01/2006 0.17.26] Format: .AVI
[19/01/2006 0.17.26] Target size: 1400Mb
[19/01/2006 0.17.26] Custom resolution settings: maximum width of 704 pixels
[19/01/2006 0.17.26] Custom audio settings: VBR MP3 with average bitrate: 128Kbps
[19/01/2006 0.17.26] Standalone support enabled: ESS
[19/01/2006 0.17.26] Started encoding.
[19/01/2006 0.17.26] Source resolution: 608x464
[19/01/2006 0.17.26] Source fps: 25
[19/01/2006 0.17.26] Analyzing source.
*************************************
EXCEPTION: Cannot open file "E:\Divx Elaborazioni in corso\agk_tmp\interlace.log". Impossibile trovare il file specificato
*************************************
[19/01/2006 0.17.31] Job finished. Total time: 5 seconds
====================================================
seehowyouare
19th January 2006, 18:16
The folder name is the problem.
>> EXCEPTION: Cannot open file "E:\Divx Elaborazioni in corso\agk_tmp\interlace.log". Impossibile trovare il file specificato
Remove the SPACES in your folder name.
For example, this folder name is OK - e:\divx\agk_tmp
Silverboy
19th January 2006, 20:14
The folder name is the problem.
>> EXCEPTION: Cannot open file "E:\Divx Elaborazioni in corso\agk_tmp\interlace.log". Impossibile trovare il file specificato
Remove the SPACES in your folder name.
For example, this folder name is OK - e:\divx\agk_tmp
It's the same...
Avs File...
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\decomb.dll")
file="E:\agk_tmp\interlace.log"
global sep="-"
function IsMoving() {
global b = (diff < 1.0) ? false : true}
movie = DirectShowSource("E:\Scarface.avi",25).KillAudio()
movie = isRGB(movie) ? ConvertToYUY2(movie) : movie
isYUY2(movie) ? ConvertToYV12(movie) : movie
c = SelectRangeEvery(18,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)
Log File...
[19/01/2006 20.12.49] AutoGK 2.26
[19/01/2006 20.12.49] OS: WinXP (5.1.2600).2
[19/01/2006 20.12.49] Job started.
[19/01/2006 20.12.49] Input file: E:\Scarface.avi
[19/01/2006 20.12.49] Input codec: XviD
[19/01/2006 20.12.49] Source duration: 2h 42mn 57s 960ms
[19/01/2006 20.12.49] Output file: E:\Scarface_agk.avi
[19/01/2006 20.12.49] Output codec: XviD
[19/01/2006 20.12.49] Audio 1: 117 Kbps MPEG1/2 L3 2ch
[19/01/2006 20.12.49] Subtitles: none
[19/01/2006 20.12.49] Format: .AVI
[19/01/2006 20.12.49] Target size: 1400Mb
[19/01/2006 20.12.49] Custom resolution settings: fixed width of 608 pixels
[19/01/2006 20.12.49] Custom audio settings: VBR MP3 with average bitrate: 112Kbps
[19/01/2006 20.12.49] Standalone support enabled: ESS
[19/01/2006 20.12.49] Started encoding.
[19/01/2006 20.12.49] Source resolution: 608x256
[19/01/2006 20.12.49] Source fps: 25
[19/01/2006 20.12.49] Analyzing source.
*************************************
EXCEPTION: Cannot open file "E:\agk_tmp\interlace.log". Impossibile trovare il file specificato
*************************************
[19/01/2006 20.12.57] Job finished. Total time: 7 seconds
====================================================
BigDid
19th January 2006, 20:57
Hummmm...
Is your source audio mp3 ? if yes, dont select it, do the encode without sound and mux it after.
If not, You'll have to try something else
Did
Silverboy
19th January 2006, 21:12
If I restart the conversion and select NO Audio it's the same....
Avs file...
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\decomb.dll")
file="E:\agk_tmp\interlace.log"
global sep="-"
function IsMoving() {
global b = (diff < 1.0) ? false : true}
movie = DirectShowSource("E:\Scarface.avi",25).KillAudio()
movie = isRGB(movie) ? ConvertToYUY2(movie) : movie
isYUY2(movie) ? ConvertToYV12(movie) : movie
c = SelectRangeEvery(18,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)
Log File...
[19/01/2006 21.05.11] AutoGK 2.26
[19/01/2006 21.05.11] OS: WinXP (5.1.2600).2
[19/01/2006 21.05.11] Job started.
[19/01/2006 21.05.11] Input file: E:\Scarface.avi
[19/01/2006 21.05.11] Input codec: XviD
[19/01/2006 21.05.11] Source duration: 2h 42mn 57s 960ms
[19/01/2006 21.05.11] Output file: E:\Scarface_agk.avi
[19/01/2006 21.05.11] Output codec: XviD
[19/01/2006 21.05.11] Audio: none
[19/01/2006 21.05.11] Subtitles: none
[19/01/2006 21.05.11] Format: .AVI
[19/01/2006 21.05.11] Target size: 1400Mb
[19/01/2006 21.05.11] Custom resolution settings: fixed width of 608 pixels
[19/01/2006 21.05.11] Standalone support enabled: ESS
[19/01/2006 21.05.11] Started encoding.
[19/01/2006 21.05.11] Source resolution: 608x256
[19/01/2006 21.05.11] Source fps: 25
[19/01/2006 21.05.11] Analyzing source.
*************************************
EXCEPTION: Cannot open file "E:\agk_tmp\interlace.log". Impossibile trovare il file specificato
*************************************
[19/01/2006 21.05.20] Job finished. Total time: 9 seconds
====================================================
The problem is the Analyzing source process don't Start and VdubMod Crash immediately
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.