catflap001
12th December 2010, 08:14
hi. it's been almost a year since i came by. i haven't done much
encoding for many months due to my old pc slowing down.
i just got a new laptop win7 64bit home premium.
firstly, i'm not sure if this is a vdub problem or agk problem, so, sorry if it's the wrong forum. i did search first and found some possibly similar situations, but the threads were a few years old and not sure if they pertain to me anyway.
ok, i installed agk with the default/standard settings and installations, with ESS (as i read here it's the most common)
i'm trying to make a 350MB xvid vbr128 and after the first pass vdub crashes when it starts the second pass.
the only xvid codec i have installed is the one that was with agk.
i also tried an uninstall and a system restore and chose MTK/Sigma but i get the same result.
i've also tried tried changing the OS compatibility settings but i get the same result.
i read here that i might have to use vdubmod, so i went to sourceforge for the most recent one, installed it, but it says there's a corona.dll missing. i know there are bug fixes available, but i don't know which one to take because i had downloaded the most recent stable version from sourceforge. maybe i'm just installing
the stable version in the wrong place?
i did however successfully convert a 31MB video from the same dvd. except i set it for 20MB and it came out at 14MB. i know this usually happens if an xvid codec other than the one that agk installs is also in the system, but i don't have any others. i had a new laptop a few weeks ago (which crashed and i needed a replacement - this one) where the video was undersized and i fixed it by removing the incompatible xvid codec, but i didn't have any of these other vdub problems.
thanks for any help i can get.
again, sorry if this is in the wrong forum.
[12/12/2010 6:50:08 AM] AutoGK 2.55
[12/12/2010 6:50:08 AM] OS: Windows Vista (6.1.7600).2
[12/12/2010 6:50:08 AM] Job started.
[12/12/2010 6:50:08 AM] Input file: D:\Movies\Playhouse\VTS_01_0.IFO
[12/12/2010 6:50:08 AM] Output file: D:\Movies\Playhouse\Playhouse.avi
[12/12/2010 6:50:08 AM] Output codec: XviD
[12/12/2010 6:50:08 AM] Audio 1: English AC3 2ch
[12/12/2010 6:50:08 AM] Subtitles: none
[12/12/2010 6:50:08 AM] Format: AVI
[12/12/2010 6:50:08 AM] Target size: 350Mb
[12/12/2010 6:50:08 AM] Audio 1 settings: VBR MP3 with average bitrate: 128Kbps
[12/12/2010 6:50:08 AM] Standalone support enabled: ESS
[12/12/2010 6:50:08 AM] Started encoding.
[12/12/2010 6:50:08 AM] Demuxing and indexing.
[12/12/2010 6:50:42 AM] Processing file: D:\Movies\Playhouse\VTS_01_1.VOB
[12/12/2010 6:50:42 AM] Processing file: D:\Movies\Playhouse\VTS_01_2.VOB
[12/12/2010 6:50:42 AM] Processing file: D:\Movies\Playhouse\VTS_01_3.VOB
[12/12/2010 6:50:42 AM] Source resolution: 720x480
[12/12/2010 6:50:42 AM] Found NTSC source.
[12/12/2010 6:50:42 AM] Source aspect ratio: 4:3
[12/12/2010 6:50:42 AM] Analyzing source.
[12/12/2010 6:51:48 AM] Source has percentage of interlacing in motion areas: 12.90
[12/12/2010 6:51:48 AM] Source has percentage of telecined patterns: 11.36
[12/12/2010 6:51:48 AM] Source has percentage of progressive patterns: 80.17
[12/12/2010 6:51:48 AM] Source has percentage of interlaced patterns: 8.46
[12/12/2010 6:51:48 AM] Source is considered to be hybrid (mostly NTSC).
[12/12/2010 6:51:48 AM] Looking for optimal hybrid thresholds.
[12/12/2010 6:51:53 AM] Found threshold of: 0.01
[12/12/2010 6:51:53 AM] Output will contain 86405 frames
[12/12/2010 6:51:53 AM] Decoding audio.
[12/12/2010 6:52:45 AM] Normalizing audio.
[12/12/2010 6:52:48 AM] Encoding audio.
[12/12/2010 6:55:57 AM] Using VAQ in XviD
[12/12/2010 6:55:57 AM] Audio1 size: 40,498,344 bytes (38.62 Mb)
[12/12/2010 6:55:58 AM] Overhead: 3,456,256 bytes (3.30 Mb)
[12/12/2010 6:55:58 AM] Video size: 323,047,000 bytes (308.08 Mb)
[12/12/2010 6:55:58 AM] Running compressibility test.
[12/12/2010 6:55:58 AM] Writing the following script to D:\Movies\Playhouse\agk_tmp\Playhouse_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~2\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\decomb.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\Movies\Playhouse\agk_tmp\Playhouse.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 = 0.888888888888889
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 < 1.25) ? 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
Telecide(movie,guide=1,post=2).Decimate(mode=1,threshold=0.01)
autocrop(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)
===========================================================
[12/12/2010 6:58:21 AM] Duration was: 2 minutes 22 seconds
[12/12/2010 6:58:21 AM] Speed was: 30.25 fps.
[12/12/2010 6:58:21 AM] Compressibility percentage is: 29.44
[12/12/2010 6:58:21 AM] Using softer resizer.
[12/12/2010 6:58:21 AM] Chosen resolution is: 464x352 ( AR: 1.32 )
[12/12/2010 6:58:21 AM] Predicted comptest value is: 58.47%
[12/12/2010 6:58:21 AM] Running first pass.
[12/12/2010 6:58:21 AM] Writing the following script to D:\Movies\Playhouse\agk_tmp\Playhouse_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~2\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\decomb.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\Movies\Playhouse\agk_tmp\Playhouse.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 = 0.888888888888889
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 < 1.25) ? input_par : (4.0/3.0)
out_width = 464
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
Telecide(movie,guide=1,post=2).Decimate(mode=1,threshold=0.01)
autocrop(mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0)
BicubicResize(out_width,out_height,0,0.5)
RemoveGrain(mode=2)
===========================================================
[12/12/2010 7:17:40 AM] Duration was: 19 minutes 19 seconds
[12/12/2010 7:17:40 AM] Speed was: 74.52 fps.
[12/12/2010 7:17:40 AM] Expected quality of first pass size: 54.39%
[12/12/2010 7:17:40 AM] Running second pass.
[12/12/2010 7:21:28 AM] Duration was: 3 minutes 47 seconds
[12/12/2010 7:21:28 AM] Speed was: 379.91 fps.
[12/12/2010 7:21:28 AM] Job finished. Total time: 31 minutes 20 seconds
**********
UPDATE:
i figured out i'd installed the vdubmod in the wrong folder, so i installed it in the autogk/vdubmod
folder and tried the smaller video file again, and i got the exact same results. here's that log. I haven't tried the 350MB encode yet.
i'll wait to hear from the forum.
[12/12/2010 8:46:15 AM] AutoGK 2.55
[12/12/2010 8:46:15 AM] OS: Windows Vista (6.1.7600).2
[12/12/2010 8:46:15 AM] Job started.
[12/12/2010 8:46:15 AM] Input file: D:\Movies\Extras\VTS_03_0.IFO
[12/12/2010 8:46:15 AM] Output file: D:\Movies\Extras\Extras.avi
[12/12/2010 8:46:15 AM] Output codec: XviD
[12/12/2010 8:46:15 AM] Audio 1: English AC3 2ch
[12/12/2010 8:46:15 AM] Subtitles: none
[12/12/2010 8:46:15 AM] Format: AVI
[12/12/2010 8:46:15 AM] Target size: 20Mb
[12/12/2010 8:46:15 AM] Audio 1 settings: VBR MP3 with average bitrate: 128Kbps
[12/12/2010 8:46:15 AM] Standalone support enabled: ESS
[12/12/2010 8:46:15 AM] Started encoding.
[12/12/2010 8:46:15 AM] Demuxing and indexing.
[12/12/2010 8:46:15 AM] Processing file: D:\Movies\Extras\VTS_03_1.VOB
[12/12/2010 8:46:15 AM] Source resolution: 720x480
[12/12/2010 8:46:15 AM] Found NTSC source.
[12/12/2010 8:46:15 AM] Source aspect ratio: 4:3
[12/12/2010 8:46:15 AM] Analyzing source.
[12/12/2010 8:46:22 AM] Source has percentage of interlacing in motion areas: 20.30
[12/12/2010 8:46:22 AM] Source has percentage of telecined patterns: 30.69
[12/12/2010 8:46:22 AM] Source has percentage of progressive patterns: 59.41
[12/12/2010 8:46:22 AM] Source has percentage of interlaced patterns: 9.90
[12/12/2010 8:46:22 AM] Source is considered to be hybrid (mostly NTSC).
[12/12/2010 8:46:23 AM] Looking for optimal hybrid thresholds.
[12/12/2010 8:46:24 AM] Found threshold of: 0.01
[12/12/2010 8:46:24 AM] Output will contain 1290 frames
[12/12/2010 8:46:24 AM] Decoding audio.
[12/12/2010 8:46:25 AM] Normalizing audio.
[12/12/2010 8:46:25 AM] Encoding audio.
[12/12/2010 8:46:27 AM] Using VAQ in XviD
[12/12/2010 8:46:27 AM] Audio1 size: 530,448 bytes (0.51 Mb)
[12/12/2010 8:46:28 AM] Overhead: 51,584 bytes (0.05 Mb)
[12/12/2010 8:46:28 AM] Video size: 20,389,488 bytes (19.44 Mb)
[12/12/2010 8:46:28 AM] Running compressibility test.
[12/12/2010 8:46:28 AM] Writing the following script to D:\Movies\Extras\agk_tmp\Extras_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~2\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\decomb.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\Movies\Extras\agk_tmp\Extras.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 = 0.888888888888889
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 < 1.25) ? 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
Telecide(movie,guide=1,post=2).Decimate(mode=1,threshold=0.01)
autocrop(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(15,15)
===========================================================
[12/12/2010 8:46:56 AM] Duration was: 28 seconds
[12/12/2010 8:46:56 AM] Speed was: 45.64 fps.
[12/12/2010 8:46:56 AM] Compressibility percentage is: 236.06
[12/12/2010 8:46:56 AM] Using sharper matrix
[12/12/2010 8:46:56 AM] Switching b-frames off
[12/12/2010 8:46:56 AM] Chosen resolution is: 720x544 ( AR: 1.32 )
[12/12/2010 8:46:56 AM] Predicted comptest value is: 125.22%
[12/12/2010 8:46:56 AM] Running first pass.
[12/12/2010 8:46:56 AM] Writing the following script to D:\Movies\Extras\agk_tmp\Extras_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~2\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\decomb.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\Movies\Extras\agk_tmp\Extras.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 = 0.888888888888889
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 < 1.25) ? input_par : (4.0/3.0)
out_width = 720
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
Telecide(movie,guide=1,post=2).Decimate(mode=1,threshold=0.01)
autocrop(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)
===========================================================
[12/12/2010 8:47:22 AM] Duration was: 26 seconds
[12/12/2010 8:47:22 AM] Speed was: 49.05 fps.
[12/12/2010 8:47:22 AM] Expected quality of first pass size: 130.89%
[12/12/2010 8:47:22 AM] Trying to adjust settings.
[12/12/2010 8:47:22 AM] No adjustment is possible
[12/12/2010 8:47:22 AM] Warning: final AVI will likely be undersized.
[12/12/2010 8:47:22 AM] Running second pass.
[12/12/2010 8:47:53 AM] Duration was: 30 seconds
[12/12/2010 8:47:53 AM] Speed was: 42.13 fps.
[12/12/2010 8:47:53 AM] Job finished. Total time: 1 minute, 38 seconds
encoding for many months due to my old pc slowing down.
i just got a new laptop win7 64bit home premium.
firstly, i'm not sure if this is a vdub problem or agk problem, so, sorry if it's the wrong forum. i did search first and found some possibly similar situations, but the threads were a few years old and not sure if they pertain to me anyway.
ok, i installed agk with the default/standard settings and installations, with ESS (as i read here it's the most common)
i'm trying to make a 350MB xvid vbr128 and after the first pass vdub crashes when it starts the second pass.
the only xvid codec i have installed is the one that was with agk.
i also tried an uninstall and a system restore and chose MTK/Sigma but i get the same result.
i've also tried tried changing the OS compatibility settings but i get the same result.
i read here that i might have to use vdubmod, so i went to sourceforge for the most recent one, installed it, but it says there's a corona.dll missing. i know there are bug fixes available, but i don't know which one to take because i had downloaded the most recent stable version from sourceforge. maybe i'm just installing
the stable version in the wrong place?
i did however successfully convert a 31MB video from the same dvd. except i set it for 20MB and it came out at 14MB. i know this usually happens if an xvid codec other than the one that agk installs is also in the system, but i don't have any others. i had a new laptop a few weeks ago (which crashed and i needed a replacement - this one) where the video was undersized and i fixed it by removing the incompatible xvid codec, but i didn't have any of these other vdub problems.
thanks for any help i can get.
again, sorry if this is in the wrong forum.
[12/12/2010 6:50:08 AM] AutoGK 2.55
[12/12/2010 6:50:08 AM] OS: Windows Vista (6.1.7600).2
[12/12/2010 6:50:08 AM] Job started.
[12/12/2010 6:50:08 AM] Input file: D:\Movies\Playhouse\VTS_01_0.IFO
[12/12/2010 6:50:08 AM] Output file: D:\Movies\Playhouse\Playhouse.avi
[12/12/2010 6:50:08 AM] Output codec: XviD
[12/12/2010 6:50:08 AM] Audio 1: English AC3 2ch
[12/12/2010 6:50:08 AM] Subtitles: none
[12/12/2010 6:50:08 AM] Format: AVI
[12/12/2010 6:50:08 AM] Target size: 350Mb
[12/12/2010 6:50:08 AM] Audio 1 settings: VBR MP3 with average bitrate: 128Kbps
[12/12/2010 6:50:08 AM] Standalone support enabled: ESS
[12/12/2010 6:50:08 AM] Started encoding.
[12/12/2010 6:50:08 AM] Demuxing and indexing.
[12/12/2010 6:50:42 AM] Processing file: D:\Movies\Playhouse\VTS_01_1.VOB
[12/12/2010 6:50:42 AM] Processing file: D:\Movies\Playhouse\VTS_01_2.VOB
[12/12/2010 6:50:42 AM] Processing file: D:\Movies\Playhouse\VTS_01_3.VOB
[12/12/2010 6:50:42 AM] Source resolution: 720x480
[12/12/2010 6:50:42 AM] Found NTSC source.
[12/12/2010 6:50:42 AM] Source aspect ratio: 4:3
[12/12/2010 6:50:42 AM] Analyzing source.
[12/12/2010 6:51:48 AM] Source has percentage of interlacing in motion areas: 12.90
[12/12/2010 6:51:48 AM] Source has percentage of telecined patterns: 11.36
[12/12/2010 6:51:48 AM] Source has percentage of progressive patterns: 80.17
[12/12/2010 6:51:48 AM] Source has percentage of interlaced patterns: 8.46
[12/12/2010 6:51:48 AM] Source is considered to be hybrid (mostly NTSC).
[12/12/2010 6:51:48 AM] Looking for optimal hybrid thresholds.
[12/12/2010 6:51:53 AM] Found threshold of: 0.01
[12/12/2010 6:51:53 AM] Output will contain 86405 frames
[12/12/2010 6:51:53 AM] Decoding audio.
[12/12/2010 6:52:45 AM] Normalizing audio.
[12/12/2010 6:52:48 AM] Encoding audio.
[12/12/2010 6:55:57 AM] Using VAQ in XviD
[12/12/2010 6:55:57 AM] Audio1 size: 40,498,344 bytes (38.62 Mb)
[12/12/2010 6:55:58 AM] Overhead: 3,456,256 bytes (3.30 Mb)
[12/12/2010 6:55:58 AM] Video size: 323,047,000 bytes (308.08 Mb)
[12/12/2010 6:55:58 AM] Running compressibility test.
[12/12/2010 6:55:58 AM] Writing the following script to D:\Movies\Playhouse\agk_tmp\Playhouse_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~2\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\decomb.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\Movies\Playhouse\agk_tmp\Playhouse.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 = 0.888888888888889
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 < 1.25) ? 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
Telecide(movie,guide=1,post=2).Decimate(mode=1,threshold=0.01)
autocrop(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)
===========================================================
[12/12/2010 6:58:21 AM] Duration was: 2 minutes 22 seconds
[12/12/2010 6:58:21 AM] Speed was: 30.25 fps.
[12/12/2010 6:58:21 AM] Compressibility percentage is: 29.44
[12/12/2010 6:58:21 AM] Using softer resizer.
[12/12/2010 6:58:21 AM] Chosen resolution is: 464x352 ( AR: 1.32 )
[12/12/2010 6:58:21 AM] Predicted comptest value is: 58.47%
[12/12/2010 6:58:21 AM] Running first pass.
[12/12/2010 6:58:21 AM] Writing the following script to D:\Movies\Playhouse\agk_tmp\Playhouse_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~2\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\decomb.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\Movies\Playhouse\agk_tmp\Playhouse.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 = 0.888888888888889
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 < 1.25) ? input_par : (4.0/3.0)
out_width = 464
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
Telecide(movie,guide=1,post=2).Decimate(mode=1,threshold=0.01)
autocrop(mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=34,samplestartframe=0,leftadd=0,rightadd=0,topadd=0,bottomadd=0)
BicubicResize(out_width,out_height,0,0.5)
RemoveGrain(mode=2)
===========================================================
[12/12/2010 7:17:40 AM] Duration was: 19 minutes 19 seconds
[12/12/2010 7:17:40 AM] Speed was: 74.52 fps.
[12/12/2010 7:17:40 AM] Expected quality of first pass size: 54.39%
[12/12/2010 7:17:40 AM] Running second pass.
[12/12/2010 7:21:28 AM] Duration was: 3 minutes 47 seconds
[12/12/2010 7:21:28 AM] Speed was: 379.91 fps.
[12/12/2010 7:21:28 AM] Job finished. Total time: 31 minutes 20 seconds
**********
UPDATE:
i figured out i'd installed the vdubmod in the wrong folder, so i installed it in the autogk/vdubmod
folder and tried the smaller video file again, and i got the exact same results. here's that log. I haven't tried the 350MB encode yet.
i'll wait to hear from the forum.
[12/12/2010 8:46:15 AM] AutoGK 2.55
[12/12/2010 8:46:15 AM] OS: Windows Vista (6.1.7600).2
[12/12/2010 8:46:15 AM] Job started.
[12/12/2010 8:46:15 AM] Input file: D:\Movies\Extras\VTS_03_0.IFO
[12/12/2010 8:46:15 AM] Output file: D:\Movies\Extras\Extras.avi
[12/12/2010 8:46:15 AM] Output codec: XviD
[12/12/2010 8:46:15 AM] Audio 1: English AC3 2ch
[12/12/2010 8:46:15 AM] Subtitles: none
[12/12/2010 8:46:15 AM] Format: AVI
[12/12/2010 8:46:15 AM] Target size: 20Mb
[12/12/2010 8:46:15 AM] Audio 1 settings: VBR MP3 with average bitrate: 128Kbps
[12/12/2010 8:46:15 AM] Standalone support enabled: ESS
[12/12/2010 8:46:15 AM] Started encoding.
[12/12/2010 8:46:15 AM] Demuxing and indexing.
[12/12/2010 8:46:15 AM] Processing file: D:\Movies\Extras\VTS_03_1.VOB
[12/12/2010 8:46:15 AM] Source resolution: 720x480
[12/12/2010 8:46:15 AM] Found NTSC source.
[12/12/2010 8:46:15 AM] Source aspect ratio: 4:3
[12/12/2010 8:46:15 AM] Analyzing source.
[12/12/2010 8:46:22 AM] Source has percentage of interlacing in motion areas: 20.30
[12/12/2010 8:46:22 AM] Source has percentage of telecined patterns: 30.69
[12/12/2010 8:46:22 AM] Source has percentage of progressive patterns: 59.41
[12/12/2010 8:46:22 AM] Source has percentage of interlaced patterns: 9.90
[12/12/2010 8:46:22 AM] Source is considered to be hybrid (mostly NTSC).
[12/12/2010 8:46:23 AM] Looking for optimal hybrid thresholds.
[12/12/2010 8:46:24 AM] Found threshold of: 0.01
[12/12/2010 8:46:24 AM] Output will contain 1290 frames
[12/12/2010 8:46:24 AM] Decoding audio.
[12/12/2010 8:46:25 AM] Normalizing audio.
[12/12/2010 8:46:25 AM] Encoding audio.
[12/12/2010 8:46:27 AM] Using VAQ in XviD
[12/12/2010 8:46:27 AM] Audio1 size: 530,448 bytes (0.51 Mb)
[12/12/2010 8:46:28 AM] Overhead: 51,584 bytes (0.05 Mb)
[12/12/2010 8:46:28 AM] Video size: 20,389,488 bytes (19.44 Mb)
[12/12/2010 8:46:28 AM] Running compressibility test.
[12/12/2010 8:46:28 AM] Writing the following script to D:\Movies\Extras\agk_tmp\Extras_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~2\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\decomb.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\Movies\Extras\agk_tmp\Extras.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 = 0.888888888888889
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 < 1.25) ? 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
Telecide(movie,guide=1,post=2).Decimate(mode=1,threshold=0.01)
autocrop(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(15,15)
===========================================================
[12/12/2010 8:46:56 AM] Duration was: 28 seconds
[12/12/2010 8:46:56 AM] Speed was: 45.64 fps.
[12/12/2010 8:46:56 AM] Compressibility percentage is: 236.06
[12/12/2010 8:46:56 AM] Using sharper matrix
[12/12/2010 8:46:56 AM] Switching b-frames off
[12/12/2010 8:46:56 AM] Chosen resolution is: 720x544 ( AR: 1.32 )
[12/12/2010 8:46:56 AM] Predicted comptest value is: 125.22%
[12/12/2010 8:46:56 AM] Running first pass.
[12/12/2010 8:46:56 AM] Writing the following script to D:\Movies\Extras\agk_tmp\Extras_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~2\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\decomb.dll")
LoadPlugin("C:\PROGRA~2\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\Movies\Extras\agk_tmp\Extras.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 = 0.888888888888889
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 < 1.25) ? input_par : (4.0/3.0)
out_width = 720
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
Telecide(movie,guide=1,post=2).Decimate(mode=1,threshold=0.01)
autocrop(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)
===========================================================
[12/12/2010 8:47:22 AM] Duration was: 26 seconds
[12/12/2010 8:47:22 AM] Speed was: 49.05 fps.
[12/12/2010 8:47:22 AM] Expected quality of first pass size: 130.89%
[12/12/2010 8:47:22 AM] Trying to adjust settings.
[12/12/2010 8:47:22 AM] No adjustment is possible
[12/12/2010 8:47:22 AM] Warning: final AVI will likely be undersized.
[12/12/2010 8:47:22 AM] Running second pass.
[12/12/2010 8:47:53 AM] Duration was: 30 seconds
[12/12/2010 8:47:53 AM] Speed was: 42.13 fps.
[12/12/2010 8:47:53 AM] Job finished. Total time: 1 minute, 38 seconds