im wondering why autogk is so slow for me? my computer is a p4 3.2 HT, 1gb ram 800mhz FSB. it takes nearly 3 hours to encode a 700MB file. It took exactly 2 hour 51 minute 38 seconds. the movie I ripped was 1 hour 32 minutes.
+ Reply to Thread
Results 1 to 7 of 7
-
-
If you ran 2-pass encoding, and converted the audio to MP3, your times aren't out of line. In addition, the higher the resolution (i. e., the greater the number of pixels being encoded), the longer it takes. Also, if any filters were added (IVTC, for example) they will also slow the encoding. However, without the log as evidence, your statements don't really mean very much.
-
OK so I ran a test on two different computers.
Desktop Specs - P4 3.02 HT - 1GB PC4200 DDR
Notebook Specs - P4 3.02 HT - 1GB PC2700 DDR
I did the test on both these machines using the same settings with minimal multitasking.(Just surfing the web). Here is the log for the desktop results, I don't have the notebook log here. The notebook took about 2 hours and some minutes to complete while the desktop only 41 minutes.
[11/4/2005 8:33:39 AM] AutoGK 1.96
[11/4/2005 8:33:39 AM] OS: WinXP (5.1.2600).2
[11/4/2005 8:33:39 AM] Job started.
[11/4/2005 8:33:39 AM] Input file: xxx.mpg
[11/4/2005 8:33:39 AM] Output file: D:\Movies\xxx.avi
[11/4/2005 8:33:39 AM] Audio: Audio Stream 0
[11/4/2005 8:33:39 AM] Subtitles: none
[11/4/2005 8:33:39 AM] Codec: XviD
[11/4/2005 8:33:39 AM] Target size: 350Mb
[11/4/2005 8:33:39 AM] Custom resolution settings: fixed width of 512 pixels
[11/4/2005 8:33:39 AM] Custom audio settings: VBR MP3 with average bitrate: 112Kbps
[11/4/2005 8:33:39 AM] Started encoding.
[11/4/2005 8:33:39 AM] Demuxing and indexing.
[11/4/2005 8:34:13 AM] Processing file: D:\Movies\xxx.mpg
[11/4/2005 8:34:13 AM] Source aspect ratio: 4:3
[11/4/2005 8:34:13 AM] Source resolution: 480x480
[11/4/2005 8:34:13 AM] Found NTSC source.
[11/4/2005 8:34:13 AM] Source seems to be pure FILM.
[11/4/2005 8:34:13 AM] Output will contain 73951 frames
[11/4/2005 8:34:13 AM] Encoding audio.
[11/4/2005 8:38:13 AM] Using bitrate spikes control.
[11/4/2005 8:38:13 AM] Audio size: 42,634,229 bytes (40.66 Mb)
[11/4/2005 8:38:13 AM] Overhead: 2,958,080 bytes (2.82 Mb)
[11/4/2005 8:38:13 AM] Video size: 321,409,291 bytes (306.52 Mb)
[11/4/2005 8:38:13 AM] Running compressibility test.
[11/4/2005 8:38:13 AM] Writing the following script to D:\Movies\xxx_comptest.avs
================================================== =========
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dl l")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrain SSE3.dll")
movie = mpeg2source("D:\Movies\xxx.d2v")
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples= 10,aspect=0,threshold=34,samplestartframe=0,leftad d=0,rightadd=0,topadd=0,bottomadd=0)
fixed_aspect = 1.33333333333333
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 = 512
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)
================================================== =========
[11/4/2005 8:39:44 AM] Duration was: 1 minute, 30 seconds
[11/4/2005 8:39:44 AM] Speed was: 40.70 fps.
[11/4/2005 8:39:44 AM] Compressibility percentage is: 18.93
[11/4/2005 8:39:44 AM] Using softer resizer.
[11/4/2005 8:39:44 AM] Chosen resolution is: 512x288 ( AR: 1.78 )
[11/4/2005 8:39:44 AM] Predicted comptest value is: 20.20
[11/4/2005 8:39:44 AM] Running first pass.
[11/4/2005 8:39:44 AM] Writing the following script to D:\Movies\xxx.avs
================================================== =========
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.d ll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dl l")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrain SSE3.dll")
movie = mpeg2source("D:\xxx.d2v")
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples= 10,aspect=0,threshold=34,samplestartframe=0,leftad d=0,rightadd=0,topadd=0,bottomadd=0)
fixed_aspect = 1.33333333333333
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 = 512
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)
BicubicResize(out_width,out_height,0,0.5)
RemoveGrain(mode=2)
================================================== =========
[11/4/2005 8:51:50 AM] Duration was: 12 minutes 5 seconds
[11/4/2005 8:51:50 AM] Speed was: 101.95 fps.
[11/4/2005 8:51:50 AM] Expected quality of first pass size: 19.72
[11/4/2005 8:51:50 AM] Running second pass.
[11/4/2005 9:14:48 AM] Duration was: 22 minutes 58 seconds
[11/4/2005 9:14:48 AM] Speed was: 53.66 fps.
[11/4/2005 9:14:48 AM] Job finished. Total time: 41 minutes 8 seconds -
That job didn't look to me to be too far out of line. Even though it was at a pretty low resolution, you got decent speed. My guess is that it didn't look too good though. The compression test percentage was pretty low. It needed a much larger file size. Even though the video was a short one (50 minutes or so), it looks to me like it could have used a full CD. Must not have compressed very well.
-
Yes, around what figures I get too. What was your expectations?
/Mats
Similar Threads
-
audio sync with AGK
By coeng73 in forum Blu-ray RippingReplies: 16Last Post: 3rd Oct 2013, 14:13 -
AGK Batcher v1.01 Released
By OneAmp in forum DVD RippingReplies: 13Last Post: 24th Nov 2010, 09:35 -
Replacement for AGK?
By OldAmateur in forum Video ConversionReplies: 2Last Post: 1st Aug 2010, 15:47 -
AGK conversion problems
By loninappleton in forum SubtitleReplies: 10Last Post: 9th Sep 2009, 10:48 -
If you have plenty of time with AGK?
By aslan in forum DVD RippingReplies: 4Last Post: 29th Dec 2007, 14:36