PDA

View Full Version : AGK 1.90b Problems


Monza
11th February 2005, 17:19
I Have noticed that in agk 1.90b my 1 cd file sizes are now to large (overburn required) and the color correction is always on (Box in hidden features unchecked)
Are thes bugs or user error. See log file below..

Thanks..



2/10/2005 11:05:45 PM] AutoGK 1.90b
[2/10/2005 11:05:45 PM] OS: WinXP (5.1.2600).2
[2/10/2005 11:05:45 PM] Job started.
[2/10/2005 11:05:45 PM] Input dir: D:\DVD Decrypter Temp Files\FREDDY_VS_JASON\VIDEO_TS
[2/10/2005 11:05:45 PM] Output file: E:\Auto Gordian Knot Movie Files\Freddy vs Jason.avi
[2/10/2005 11:05:45 PM] Audio: English
[2/10/2005 11:05:45 PM] Subtitles: none
[2/10/2005 11:05:45 PM] Codec: XviD
[2/10/2005 11:05:45 PM] Target size: 700Mb
[2/10/2005 11:05:45 PM] Custom resolution settings: fixed width of 640 pixels
[2/10/2005 11:05:45 PM] Started encoding.
[2/10/2005 11:05:45 PM] Demuxing and indexing.
[2/10/2005 11:08:37 PM] Processing file: D:\DVD Decrypter Temp Files\FREDDY_VS_JASON\VIDEO_TS\VTS_01_PGC_01_1.VOB
[2/10/2005 11:08:37 PM] Processing file: D:\DVD Decrypter Temp Files\FREDDY_VS_JASON\VIDEO_TS\VTS_01_PGC_01_2.VOB
[2/10/2005 11:08:37 PM] Processing file: D:\DVD Decrypter Temp Files\FREDDY_VS_JASON\VIDEO_TS\VTS_01_PGC_01_3.VOB
[2/10/2005 11:08:37 PM] Processing file: D:\DVD Decrypter Temp Files\FREDDY_VS_JASON\VIDEO_TS\VTS_01_PGC_01_4.VOB
[2/10/2005 11:08:37 PM] Source aspect ratio: 16:9
[2/10/2005 11:08:37 PM] Source resolution: 720x480
[2/10/2005 11:08:37 PM] Found NTSC source.
[2/10/2005 11:08:37 PM] Source seems to be pure FILM.
[2/10/2005 11:08:38 PM] Color correction enabled.
[2/10/2005 11:08:38 PM] Output will contain 139956 frames
[2/10/2005 11:08:38 PM] Encoding audio.
[2/10/2005 11:36:30 PM] Audio size: 92,680,944 bytes (88.39 Mb)
[2/10/2005 11:36:30 PM] Overhead: 5,598,208 bytes (5.34 Mb)
[2/10/2005 11:36:30 PM] Video size: 635,724,048 bytes (606.27 Mb)
[2/10/2005 11:36:30 PM] Running compressibility test.
[2/10/2005 11:36:30 PM] Writing the following script to E:\Auto Gordian Knot Movie Files\agk_tmp\Freddy vs Jason_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrain.dll")

movie = mpeg2source("E:\Auto Gordian Knot Movie Files\agk_tmp\Freddy vs Jason.d2v")
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=0,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0)
fixed_aspect = 1.18518518518519
c_width = width(cropclip)
c_height = round(height(cropclip) / fixed_aspect)
input_par = float(c_width)/float(c_height)
input_par = input_par > 1.4 ? input_par : (4.0/3.0)
out_width = 640
out_height = round(float(out_width) / input_par)
hmod = out_height - (floor(out_height / 16 ) * 16)
out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0)
LanczosResize(out_width,out_height)
RemoveGrain(mode=2)
SelectRangeEvery(300,15)
===========================================================
[2/10/2005 11:49:20 PM] Duration was: 12 minutes 49 seconds
[2/10/2005 11:49:20 PM] Speed was: 9.09 fps.
[2/10/2005 11:49:20 PM] Compressibility percentage is: 65.71
[2/10/2005 11:49:20 PM] Chosen resolution is: 640x272 ( AR: 2.35 )
[2/10/2005 11:49:20 PM] Predicted comptest value is: 65.71
[2/10/2005 11:49:20 PM] Running first pass.
[2/10/2005 11:49:20 PM] Writing the following script to E:\Auto Gordian Knot Movie Files\agk_tmp\Freddy vs Jason_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrain.dll")

movie = mpeg2source("E:\Auto Gordian Knot Movie Files\agk_tmp\Freddy vs Jason.d2v")
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=0,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0)
fixed_aspect = 1.18518518518519
c_width = width(cropclip)
c_height = round(height(cropclip) / fixed_aspect)
input_par = float(c_width)/float(c_height)
input_par = input_par > 1.4 ? input_par : (4.0/3.0)
out_width = 640
out_height = round(float(out_width) / input_par)
hmod = out_height - (floor(out_height / 16 ) * 16)
out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0)
LanczosResize(out_width,out_height)
RemoveGrain(mode=2)
===========================================================
[2/11/2005 2:24:35 AM] Duration was: 2 hours 35 minutes 13 seconds
[2/11/2005 2:24:35 AM] Speed was: 15.03 fps.
[2/11/2005 2:24:35 AM] Expected quality of first pass size: 70.51
[2/11/2005 2:24:35 AM] Running second pass.
[2/11/2005 5:58:09 AM] Duration was: 3 hours 33 minutes 33 seconds
[2/11/2005 5:58:09 AM] Speed was: 10.92 fps.
[2/11/2005 5:58:09 AM] Job finished. Total time: 6 hours 52 minutes 23 seconds

len0x
11th February 2005, 17:55
Size-wise nothing really changed. It might be just a coincidence. Have you tried many sources and/or reinstalling the codec?

About color-correction: message is always there indeed (minor cosmetic bug), but its not applied if hidden option is switched off.

Monza
11th February 2005, 18:24
Thanks for the quick response . I will try a few more sources and let you know.
(Xvid is a fresh install)

len0x
12th February 2005, 20:17
Next time you encounter this - compare number of frames from the logs with number of frames in *_movie.avs from agk_tmp dir by opening that AVS file in VDubMod (File->Information). If they are not the same (+-1 frame) then please report it here and attach zipped d2v file from agk_tmp dir.

Giuliano
16th February 2005, 14:05
>AGK 1.90b Problems
>I Have noticed that in agk 1.90b my 1 cd file sizes are now to large >(overburn required) and the color correction is always on (Box in >hidden features unchecked)
>Are thes bugs or user error. See log file below..

>Thanks..

I have noticed that too and because I couldn't log myself to forum for 5 days I have leaved message at the comments section. Sorry for that.

Anyway, back to subject.

I have tried with 3 different settings and there is always oversize in the final result with 2-3 Megs over the quota.

So I had to reinstall back to last stable version of AutoGK and now there is no oversize and everything works ok. Hope it helps.

Giuliano

len0x
16th February 2005, 14:45
Originally posted by Giuliano
Hope it helps.


No, it doesn't. Did you not read this thread? I will need log files, d2v files and correct number of frames from final AVI/AVS script (when using latest AutoGK). Thanks.

len0x
17th February 2005, 12:06
Any news? No one seem to care about this problem it seems...
Ideally I'd like to see both D2V files produced by latest DGIndex and 1.0.12...

Monza
17th February 2005, 20:35
Sorry, I've been a bit busy, So far all the Xvids I have done have been the proper size.
The next time it occurs I will post the d2v,AVS script and log files.

Thanks for all the hard work