View Full Version : Undersized files with standalone support enabled
KoVaR
14th September 2007, 01:42
Hello
I'm having a problem with file size when using ESS standalone enabled
Files are very undersized
I did some testing:
When NOT using ESS:
[2007-09-14 01:33:47] AutoGK 2.40
[2007-09-14 01:33:47] OS: WinXP (5.1.2600).2
[2007-09-14 01:33:47] Job started.
[2007-09-14 01:33:47] Input file: E:\normal\VTS_01_5.VOB
[2007-09-14 01:33:47] Output file: E:\normal\VTS_01_5.avi
[2007-09-14 01:33:47] Output codec: XviD
[2007-09-14 01:33:47] Audio 1: Audio Stream 0 MPEG
[2007-09-14 01:33:47] Subtitles: none
[2007-09-14 01:33:47] Format: AVI
[2007-09-14 01:33:47] Target size: 100Mb
[2007-09-14 01:33:47] Custom resolution settings: fixed width of 640 pixels
[2007-09-14 01:33:47] Audio 1 settings: VBR MP3 with average bitrate: 112Kbps
[2007-09-14 01:33:47] Started encoding.
[2007-09-14 01:33:47] Demuxing and indexing.
[2007-09-14 01:33:59] Processing file: E:\normal\VTS_01_5.VOB
[2007-09-14 01:33:59] Source resolution: 720x576
[2007-09-14 01:33:59] Found PAL source.
[2007-09-14 01:33:59] Source aspect ratio: 4:3
[2007-09-14 01:33:59] Analyzing source.
[2007-09-14 01:34:23] Source has percentage of interlacing in motion areas: 76,72
[2007-09-14 01:34:23] Source is considered to be interlaced.
[2007-09-14 01:34:23] Output will contain 13919 frames
[2007-09-14 01:34:23] Encoding audio.
[2007-09-14 01:34:58] Audio1 size: 7,102,675 bytes (6.77 Mb)
[2007-09-14 01:34:58] Overhead: 556,800 bytes (0.53 Mb)
[2007-09-14 01:34:58] Video size: 97,198,125 bytes (92.70 Mb)
[2007-09-14 01:34:58] Running compressibility test.
[2007-09-14 01:34:58] Writing the following script to E:\normal\agk_tmp\VTS_01_5_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll")
movie = mpeg2source("E:\normal\agk_tmp\VTS_01_5.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.06666666666667
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
LeakKernelDeInt(movie,order=0,sharp=true)
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(100,15)
===========================================================
[2007-09-14 01:35:50] Duration was: 51 seconds
[2007-09-14 01:35:50] Speed was: 40,20 fps.
[2007-09-14 01:35:50] Compressibility percentage is: 44,57
[2007-09-14 01:35:50] Using softer resizer.
[2007-09-14 01:35:50] Chosen resolution is: 640x480 ( AR: 1,33 )
[2007-09-14 01:35:50] Predicted comptest value is: 46,23%
[2007-09-14 01:35:50] Running first pass.
[2007-09-14 01:35:50] Writing the following script to E:\normal\agk_tmp\VTS_01_5_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll")
movie = mpeg2source("E:\normal\agk_tmp\VTS_01_5.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.06666666666667
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
LeakKernelDeInt(movie,order=0,sharp=true)
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)
===========================================================
[2007-09-14 01:38:03] Duration was: 2 minutes 12 seconds
[2007-09-14 01:38:03] Speed was: 105,15 fps.
[2007-09-14 01:38:03] Expected quality of first pass size: 49,67%
[2007-09-14 01:38:03] Running second pass.
[2007-09-14 01:42:58] Duration was: 4 minutes 55 seconds
[2007-09-14 01:42:59] Speed was: 47,09 fps.
[2007-09-14 01:42:59] Job finished. Total time: 9 minutes 11 seconds
WITH ESS standalone
[2007-09-14 01:44:30] AutoGK 2.40
[2007-09-14 01:44:30] OS: WinXP (5.1.2600).2
[2007-09-14 01:44:30] Job started.
[2007-09-14 01:44:30] Input file: E:\ess\VTS_01_5.VOB
[2007-09-14 01:44:30] Output file: E:\ess\VTS_01_5.avi
[2007-09-14 01:44:30] Output codec: XviD
[2007-09-14 01:44:30] Audio 1: Audio Stream 0 MPEG
[2007-09-14 01:44:30] Subtitles: none
[2007-09-14 01:44:30] Format: AVI
[2007-09-14 01:44:30] Target size: 100Mb
[2007-09-14 01:44:30] Custom resolution settings: fixed width of 640 pixels
[2007-09-14 01:44:30] Audio 1 settings: VBR MP3 with average bitrate: 112Kbps
[2007-09-14 01:44:30] Standalone support enabled: ESS
[2007-09-14 01:44:30] Started encoding.
[2007-09-14 01:44:30] Demuxing and indexing.
[2007-09-14 01:44:41] Processing file: E:\ess\VTS_01_5.VOB
[2007-09-14 01:44:41] Source resolution: 720x576
[2007-09-14 01:44:41] Found PAL source.
[2007-09-14 01:44:41] Source aspect ratio: 4:3
[2007-09-14 01:44:41] Analyzing source.
[2007-09-14 01:45:07] Source has percentage of interlacing in motion areas: 76,72
[2007-09-14 01:45:07] Source is considered to be interlaced.
[2007-09-14 01:45:07] Output will contain 13919 frames
[2007-09-14 01:45:07] Encoding audio.
[2007-09-14 01:45:42] Audio1 size: 7,102,675 bytes (6.77 Mb)
[2007-09-14 01:45:42] Overhead: 556,800 bytes (0.53 Mb)
[2007-09-14 01:45:42] Video size: 97,198,125 bytes (92.70 Mb)
[2007-09-14 01:45:42] Running compressibility test.
[2007-09-14 01:45:42] Writing the following script to E:\ess\agk_tmp\VTS_01_5_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll")
movie = mpeg2source("E:\ess\agk_tmp\VTS_01_5.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.06666666666667
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
LeakKernelDeInt(movie,order=0,sharp=true)
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(100,15)
===========================================================
[2007-09-14 01:46:30] Duration was: 47 seconds
[2007-09-14 01:46:30] Speed was: 43,70 fps.
[2007-09-14 01:46:30] Compressibility percentage is: 27,43
[2007-09-14 01:46:30] Using softer resizer.
[2007-09-14 01:46:30] Chosen resolution is: 640x480 ( AR: 1,33 )
[2007-09-14 01:46:30] Predicted comptest value is: 28,97%
[2007-09-14 01:46:30] Running first pass.
[2007-09-14 01:46:30] Writing the following script to E:\ess\agk_tmp\VTS_01_5_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll")
movie = mpeg2source("E:\ess\agk_tmp\VTS_01_5.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.06666666666667
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
LeakKernelDeInt(movie,order=0,sharp=true)
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)
===========================================================
[2007-09-14 01:48:39] Duration was: 2 minutes 9 seconds
[2007-09-14 01:48:39] Speed was: 107,19 fps.
[2007-09-14 01:48:39] Expected quality of first pass size: 29,22%
[2007-09-14 01:48:39] Running second pass.
[2007-09-14 01:52:16] Duration was: 3 minutes 35 seconds
[2007-09-14 01:52:16] Speed was: 64,47 fps.
[2007-09-14 01:52:16] Job finished. Total time: 7 minutes 45 seconds
First file is ~100 MB (ok!)
Second is 43.5 MB :(
As you can see the undersize is huge; file is 1/2 of what it should be.
What am I doing wrong ?
CWR03
14th September 2007, 08:33
Start by uninstalling AutoGK, making sure Xvid uninstalls with it or uninstall it manually, then reinstall. You'll have the undersizing issue if you install Xvid over an existing one.
anlick
29th September 2007, 22:28
@KoVaR - You are right. Looks like AutoGK 2.45 has a bug with output file size. I had the same problem with previous installations and was able to overcome the problem by what CWR03 suggested. With 2.45 this does not work. If on Advanced Options page you select "Enable Standalone Support/ESS" output *.avi is always undersized. If standalone support is not enabled everything works like a charm. I wish len0x confirms this is a bug. I may go back to previous version where standalone support worked well :-(
len0x
29th September 2007, 22:56
That's an important piece of information. When I checked MTK option it seemed fine, so MTK build is OK. ESS option is actually DivX profile and that seems to have problems in latest celtic_druid's build. I suggest you install 2.40 and don't upgrade XviD that comes with 2.45 for the time being...
P.S. I wonder if celtic_druid is around to comment on this...
JoLander
22nd October 2007, 13:09
I suggest you install 2.40 and don't upgrade XviD that comes with 2.45 for the time being...
I have exactly the same problem.
Unfortunately, there is no version 2.40 available for download from your homepage.
Could anyone give me a link to that version.....
Greetz,
Joe
JoLander
22nd October 2007, 14:42
Hi,
I've got a version 2.40.
Currently I'm testing whether the filesize will be correct.
If this works, I will upgrade to 2.47b and test again.....
Cheers,
Joe
den78
23rd October 2007, 00:51
I have exactly the same problem.
Unfortunately, there is no version 2.40 available for download from your homepage.
Could anyone give me a link to that version.....
Greetz,
Joe
here u go m8
http://ftp.freenet.de/pub/filepilot/windows/multimedia/video/autogordian/AutoGordianKnot.2.40.Setup.exe
cheers :)
EvilAaron
27th October 2007, 15:56
So Using AutoGK 2.47b (clean install) ESS standalone option enabled I had two DVD to Xvid 350MB encodes work out on size. I was stoked that the latest "Xvid downgrade to make standalone ESS profile work" was working for me.
Then I setup up a DVD to Xvid 700MB last night and ended up with a 551MB output :( I like to have the best possible standalone compatibility so I use the ESS option I am ready to try the MTK/Sigma if it will cure my size issues as long as it works in my old standalones that the kids use.
With the objective of solving the ESS undersize issue here is my logs from last nights adventure. Can anyone see anything I may be doing wrong?
[26/10/2007 9:37:18 PM] AutoGK 2.47b
[26/10/2007 9:37:18 PM] OS: WinXP (5.1.2600).2
[26/10/2007 9:37:18 PM] Job started.
[26/10/2007 9:37:18 PM] Input file: D:\Gardens of Destiny - with Dan Jason\VTS_01_0.IFO
[26/10/2007 9:37:18 PM] Output file: E:\temp\Gardens of Destiny - with Dan Jason 700.avi
[26/10/2007 9:37:18 PM] Output codec: XviD
[26/10/2007 9:37:18 PM] Audio 1: ??? AC3 2ch
[26/10/2007 9:37:18 PM] Subtitles: none
[26/10/2007 9:37:18 PM] Format: AVI
[26/10/2007 9:37:18 PM] Target size: 700Mb
[26/10/2007 9:37:18 PM] Audio 1 settings: VBR MP3 with average bitrate: 128Kbps
[26/10/2007 9:37:18 PM] Standalone support enabled: ESS
[26/10/2007 9:37:18 PM] Started encoding.
[26/10/2007 9:37:18 PM] Demuxing and indexing.
[26/10/2007 9:38:17 PM] Processing file: D:\Gardens of Destiny - with Dan Jason\VTS_01_1.VOB
[26/10/2007 9:38:17 PM] Processing file: D:\Gardens of Destiny - with Dan Jason\VTS_01_2.VOB
[26/10/2007 9:38:17 PM] Processing file: D:\Gardens of Destiny - with Dan Jason\VTS_01_3.VOB
[26/10/2007 9:38:17 PM] Processing file: D:\Gardens of Destiny - with Dan Jason\VTS_01_4.VOB
[26/10/2007 9:38:17 PM] Source resolution: 720x480
[26/10/2007 9:38:17 PM] Found NTSC source.
[26/10/2007 9:38:17 PM] Source aspect ratio: 4:3
[26/10/2007 9:38:17 PM] Analyzing source.
[26/10/2007 9:41:08 PM] Source has percentage of interlacing in motion areas: 22.93
[26/10/2007 9:41:08 PM] Source has percentage of telecined patterns: 1.72
[26/10/2007 9:41:08 PM] Source has percentage of progressive patterns: 71.66
[26/10/2007 9:41:08 PM] Source has percentage of interlaced patterns: 26.62
[26/10/2007 9:41:08 PM] Source is considered to be interlaced.
[26/10/2007 9:41:08 PM] Output will contain 135026 frames
[26/10/2007 9:41:08 PM] Decoding audio.
[26/10/2007 9:42:09 PM] Normalizing audio.
[26/10/2007 9:42:30 PM] Encoding audio.
[26/10/2007 9:51:23 PM] Picking up credits information.
[26/10/2007 9:51:23 PM] Credits start frame: 133666
[26/10/2007 9:51:23 PM] Credits quality percentage: 15
[26/10/2007 9:51:23 PM] Audio1 size: 60,998,544 bytes (58.17 Mb)
[26/10/2007 9:51:23 PM] Overhead: 5,401,088 bytes (5.15 Mb)
[26/10/2007 9:51:23 PM] Video size: 667,603,568 bytes (636.68 Mb)
[26/10/2007 9:51:23 PM] Running compressibility test.
[26/10/2007 9:51:23 PM] Writing the following script to E:\temp\agk_tmp\Gardens of Destiny - with Dan Jason 700_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll")
movie = mpeg2source("E:\temp\agk_tmp\Gardens of Destiny - with Dan Jason 700.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
LeakKernelDeInt(movie,order=1,sharp=true)
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)
===========================================================
[26/10/2007 9:56:26 PM] Duration was: 5 minutes 2 seconds
[26/10/2007 9:56:26 PM] Speed was: 22.28 fps.
[26/10/2007 9:56:26 PM] Compressibility percentage is: 27.46
[26/10/2007 9:56:26 PM] Using softer resizer.
[26/10/2007 9:56:26 PM] Chosen resolution is: 448x336 ( AR: 1.33 )
[26/10/2007 9:56:26 PM] Predicted comptest value is: 59.18%
[26/10/2007 9:56:26 PM] Running first pass.
[26/10/2007 9:56:26 PM] Writing the following script to E:\temp\agk_tmp\Gardens of Destiny - with Dan Jason 700_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll")
movie = mpeg2source("E:\temp\agk_tmp\Gardens of Destiny - with Dan Jason 700.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 = 448
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
LeakKernelDeInt(movie,order=1,sharp=true)
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)
===========================================================
[26/10/2007 10:34:06 PM] Duration was: 37 minutes 40 seconds
[26/10/2007 10:34:06 PM] Speed was: 59.73 fps.
[26/10/2007 10:34:06 PM] Expected quality of first pass size: 59.68%
[26/10/2007 10:34:06 PM] Running second pass.
[26/10/2007 11:27:29 PM] Duration was: 53 minutes 22 seconds
[26/10/2007 11:27:29 PM] Speed was: 42.17 fps.
[26/10/2007 11:27:29 PM] Job finished. Total time: 1 hour, 50 minutes 10 seconds
len0x
3rd November 2007, 11:59
This is even more confusing if that works only half of the times...
celtic_druid
4th November 2007, 15:57
DXN profiles force alt2pass code for stricter VBV compliance. Could be that. Would explain why some encodes are undersized and others aren't. If an encode can hit the desired size without breaching VBV values, then it will. Anything other than DXN profiles still uses the default 2 pass code which favours size rather than VBV strictness.
EvilAaron
4th November 2007, 21:16
Yes very strange, I need to play around more with using ESS option for when it does and dosn't work out on size.
Of no real surprise the above undersize encode worked out perfectly which ESS disabled and Mediatek/Sigma enabled. All other options the same...
[27/10/2007 8:52:42 AM] AutoGK 2.47b
[27/10/2007 8:52:42 AM] OS: WinXP (5.1.2600).2
[27/10/2007 8:52:42 AM] Job started.
[27/10/2007 8:52:42 AM] Input file: D:\Gardens of Destiny - with Dan Jason\VTS_01_0.IFO
[27/10/2007 8:52:42 AM] Output file: E:\temp\Gardens of Destiny - with Dan Jason 700.avi
[27/10/2007 8:52:42 AM] Output codec: XviD
[27/10/2007 8:52:42 AM] Audio 1: ??? AC3 2ch
[27/10/2007 8:52:42 AM] Subtitles: none
[27/10/2007 8:52:42 AM] Format: AVI
[27/10/2007 8:52:42 AM] Target size: 700Mb
[27/10/2007 8:52:42 AM] Audio 1 settings: VBR MP3 with average bitrate: 128Kbps
[27/10/2007 8:52:42 AM] Standalone support enabled: MTK/Sigma
[27/10/2007 8:52:42 AM] Started encoding.
[27/10/2007 8:52:42 AM] Demuxing and indexing.
[27/10/2007 8:53:38 AM] Processing file: D:\Gardens of Destiny - with Dan Jason\VTS_01_1.VOB
[27/10/2007 8:53:38 AM] Processing file: D:\Gardens of Destiny - with Dan Jason\VTS_01_2.VOB
[27/10/2007 8:53:38 AM] Processing file: D:\Gardens of Destiny - with Dan Jason\VTS_01_3.VOB
[27/10/2007 8:53:38 AM] Processing file: D:\Gardens of Destiny - with Dan Jason\VTS_01_4.VOB
[27/10/2007 8:53:38 AM] Source resolution: 720x480
[27/10/2007 8:53:38 AM] Found NTSC source.
[27/10/2007 8:53:38 AM] Source aspect ratio: 4:3
[27/10/2007 8:53:38 AM] Analyzing source.
[27/10/2007 8:56:32 AM] Source has percentage of interlacing in motion areas: 22.93
[27/10/2007 8:56:32 AM] Source has percentage of telecined patterns: 1.72
[27/10/2007 8:56:32 AM] Source has percentage of progressive patterns: 71.66
[27/10/2007 8:56:32 AM] Source has percentage of interlaced patterns: 26.62
[27/10/2007 8:56:32 AM] Source is considered to be interlaced.
[27/10/2007 8:56:32 AM] Output will contain 135026 frames
[27/10/2007 8:56:32 AM] Decoding audio.
[27/10/2007 8:57:32 AM] Normalizing audio.
[27/10/2007 8:57:51 AM] Encoding audio.
[27/10/2007 9:06:42 AM] Picking up credits information.
[27/10/2007 9:06:42 AM] Credits start frame: 133666
[27/10/2007 9:06:42 AM] Credits quality percentage: 15
[27/10/2007 9:06:42 AM] Audio1 size: 60,998,544 bytes (58.17 Mb)
[27/10/2007 9:06:42 AM] Overhead: 5,401,088 bytes (5.15 Mb)
[27/10/2007 9:06:42 AM] Video size: 667,603,568 bytes (636.68 Mb)
[27/10/2007 9:06:42 AM] Running compressibility test.
[27/10/2007 9:06:42 AM] Writing the following script to E:\temp\agk_tmp\Gardens of Destiny - with Dan Jason 700_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll")
movie = mpeg2source("E:\temp\agk_tmp\Gardens of Destiny - with Dan Jason 700.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
LeakKernelDeInt(movie,order=1,sharp=true)
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)
===========================================================
[27/10/2007 9:12:12 AM] Duration was: 5 minutes 29 seconds
[27/10/2007 9:12:12 AM] Speed was: 20.48 fps.
[27/10/2007 9:12:12 AM] Compressibility percentage is: 37.09
[27/10/2007 9:12:12 AM] Chosen resolution is: 512x384 ( AR: 1.33 )
[27/10/2007 9:12:12 AM] Predicted comptest value is: 57.96%
[27/10/2007 9:12:12 AM] Running first pass.
[27/10/2007 9:12:12 AM] Writing the following script to E:\temp\agk_tmp\Gardens of Destiny - with Dan Jason 700_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\leakkerneldeint.dll")
movie = mpeg2source("E:\temp\agk_tmp\Gardens of Destiny - with Dan Jason 700.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 = 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
LeakKernelDeInt(movie,order=1,sharp=true)
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)
===========================================================
[27/10/2007 10:00:40 AM] Duration was: 48 minutes 27 seconds
[27/10/2007 10:00:40 AM] Speed was: 46.44 fps.
[27/10/2007 10:00:40 AM] Expected quality of first pass size: 55.97%
[27/10/2007 10:00:40 AM] Running second pass.
[27/10/2007 11:13:25 AM] Duration was: 1 hour, 12 minutes 45 seconds
[27/10/2007 11:13:25 AM] Speed was: 30.93 fps.
[27/10/2007 11:13:25 AM] Job finished. Total time: 2 hours 20 minutes 43 seconds
Wish I hadn't scrapped the log from my couple 350MB encodes that worked out on size, but since it worked I wasnt thinking of issues. I could run that source again with same options to recreate perhaps. One thing I recall is that the source for that job was a lecture and easy to compress, so much so that AutoGK disabled b-frames...
To bad the kids standalone is a ESS chipset otherwise I would just use the Mediatek/sigma option and wash my hands of it. Guess v 2.40 will be the solution. Cheers and thx for the great software, always appreciated.
celtic_druid
5th November 2007, 05:17
You could try
http://www.fsinapsi.altervista.org/code/avinaptic/index.html
Compare the smaller ESS encode with the larger MTK and see if there are any buffer underflows. Make sure that avinaptic is set to HT. If the MTK encode underflows at all and the ESS doesn't, then I guess alt2pass is doing it's job, perhaps a little too well though judging by the percentage undersized.
The idea was to truely maximise compatibility with the DXN profiles. Better VBV control, no N-VOP's, plus the regular options (forced 1 max bvop, etc.).
EvilAaron
6th November 2007, 18:13
I will do that. 1st I will have to reencode the above file with ESS (ya I deleted the undersize result only keeping log lol). As soon as I get home tomorrow I will recreate undersize file and do a comparison with tool in above post, then post back with results.
JoLander
7th November 2007, 14:58
Hi,
I currently using version 2.47b and found a strange behaviour with an 'oversized' file created with ESS compatibility.
Here is the log:
[07.11.2007 10:47:17] AutoGK 2.47b
[07.11.2007 10:47:17] OS: WinXP (5.1.2600).2
[07.11.2007 10:47:17] Job started.
[07.11.2007 10:47:17] Input file: D:\temp1\Garfield_2.ts
[07.11.2007 10:47:17] Output file: D:\temp1\Garfield_2.avi
[07.11.2007 10:47:17] Output codec: XviD
[07.11.2007 10:47:17] Audio 1: PID 00C0, MPEG Audio Stream
[07.11.2007 10:47:17] Subtitles: none
[07.11.2007 10:47:17] Format: AVI
[07.11.2007 10:47:17] Target size: 1300Mb
[07.11.2007 10:47:17] Audio 1 settings: VBR MP3 with average bitrate: 128Kbps
[07.11.2007 10:47:17] Standalone support enabled: ESS
[07.11.2007 10:47:17] Started encoding.
[07.11.2007 10:47:17] Demuxing and indexing.
[07.11.2007 10:48:28] Processing file: ..\Garfield_2.ts
[07.11.2007 10:48:28] Source resolution: 720x576
[07.11.2007 10:48:28] Found PAL source.
[07.11.2007 10:48:28] Source aspect ratio: 16:9
[07.11.2007 10:48:29] Color correction enabled.
[07.11.2007 10:48:29] Analyzing source.
[07.11.2007 10:51:38] Source has percentage of interlacing in motion areas: 0,00
[07.11.2007 10:51:38] Source is considered to be progressive.
[07.11.2007 10:51:38] Output will contain 123526 frames
[07.11.2007 10:51:38] Encoding audio.
[07.11.2007 11:00:55] Audio1 size: 69,797,952 bytes (66.56 Mb)
[07.11.2007 11:00:55] Overhead: 4,941,056 bytes (4.71 Mb)
[07.11.2007 11:00:55] Video size: 1,288,409,792 bytes (1228.72 Mb)
[07.11.2007 11:00:55] Running compressibility test.
[07.11.2007 11:00:55] Writing the following script to D:\temp1\agk_tmp\Garfield_2_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\ColorMatrix.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\temp1\agk_tmp\Garfield_2.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.42222222222222
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 = 704
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)
ColorMatrix("Rec.709->Rec.601",opt=0,hints=false,threads=0)
SelectRangeEvery(300,15)
===========================================================
[07.11.2007 11:03:25] Duration was: 2 minutes 30 seconds
[07.11.2007 11:03:25] Speed was: 41,12 fps.
[07.11.2007 11:03:26] Compressibility percentage is: 81,42
[07.11.2007 11:03:26] Chosen resolution is: 720x400 ( AR: 1,80 )
[07.11.2007 11:03:26] Predicted comptest value is: 76,43%
[07.11.2007 11:03:26] Running first pass.
[07.11.2007 11:03:26] Writing the following script to D:\temp1\agk_tmp\Garfield_2_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\ColorMatrix.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE3.dll")
movie = mpeg2source("D:\temp1\agk_tmp\Garfield_2.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.42222222222222
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
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)
ColorMatrix("Rec.709->Rec.601",opt=0,hints=false,threads=0)
===========================================================
[07.11.2007 11:34:49] Duration was: 31 minutes 23 seconds
[07.11.2007 11:34:50] Speed was: 65,58 fps.
[07.11.2007 11:34:50] Expected quality of first pass size: 88,34%
[07.11.2007 11:34:50] Trying to adjust settings.
[07.11.2007 11:34:50] No adjustment is possible
[07.11.2007 11:34:50] Running second pass.
[07.11.2007 12:19:01] Duration was: 44 minutes 11 seconds
[07.11.2007 12:19:01] Speed was: 46,59 fps.
[07.11.2007 12:19:01] Job finished. Total time: 1 hour, 31 minutes 44 seconds
The resulting AVI is in fact 1432Mb in size.
What is the meaning of the following line in the log:
[07.11.2007 11:34:50] No adjustment is possible
I used AVINaptic to analyze the file and found the following odd things in the trace:
[ About file ]
Name: Garfield 2.avi
Date: 7/11/2007 12:19:01
Size: 1,502,314,496 bytes (1432.719 MB)
[ Generic infos ]
Play duration: 01:22:21 (4941.04 s)
Container type: AVI OpenDML
Number of streams: 2
Type of stream nr. 0: video
Type of stream nr. 1: audio
Audio streams: 1
ISFT: VirtualDubMod 1.5.4.1 (build 2178/release)
JUNK: VirtualDubMod build 2178/release
[ Relevant data ]
Resolution: VERY HIGH (720 x 384)
Width: multiple of 16 (GOOD)
Height: multiple of 32 (GOOD)
Average DRF quality: HIGH (2.971218)
Standard deviation quality: MEDIUM (0.999585)
Std. dev. weighted mean: HIGH (0)
[ Video track ]
FourCC: xvid/XVID
Resolution: 720 x 384
Frame aspect ratio: 15:8 = 1.875 (~1.85:1)
Pixel aspect ratio: 1:1 = 1
Display aspect ratio: 15:8 = 1.875 (~1.85:1)
Framerate: 25 fps
Number of frames: 123526
Stream size: 1,424,570,939 bytes
Bitrate: 2306.511890 kbps
Qf: 0.333696
Key frames: 1491 (148; 186; 336; 573; 732; ... 123298)
Null frames: 0
Min key int: 1
Max key int: 250
Avg key int: 82.847753
Delay: 0 ms
[ Audio track ]
Audio tag: 0x55 (MP3)
Bitrate (container): 113 kbps VBR
Channels (container): 2
Sample rate (container): 48000 Hz
Chunks: 205877
Stream size: 69,794,208 bytes
Preload: 504 ms
Max A/V diff: 520 ms
Type: MPEG version 1 layer 3
MPEG frames: 205877
Play duration: 01:22:21 (4941.048 s)
Bitrate (bitstream): 113.003084 kbps VBR
Chunk-aligned: Yes
Emphasis: none
Mode: joint stereo
Delay: 0 ms
[ About MPEG4 encoding ]
Attenzione: sembra che lo stream non inizi con un key frame
User data: DivX503b1393p
User data: XviD0047
Packed bitstream: Yes
QPel: No
GMC: No
Interlaced: No
Aspect ratio: Square pixels
Quant type: H.263
Number of frames: 123526
Drop/delay frames: 221
Corrupted frames: 0
I-VOPs: 1491 ( 1.206 %)
P-VOPs: 61974 ( 50.141 %) #############
B-VOPs: 59914 ( 48.474 %) ############
S-VOPs: 0 ( 0.000 %)
N-VOPs: 0 ( 0.000 %)
Max consecutive B-VOPs: 1
[ DRF analysis ]
Average DRF: 2.971218
Standard deviation: 0.999585
Max DRF: 4
DRF<2: 0 ( 0.000 %)
DRF=2: 63465 ( 51.439 %) #############
DRF=3: 0 ( 0.000 %)
DRF=4: 59914 ( 48.561 %) ############
DRF>4: 0 ( 0.000 %)
I-VOPs average DRF: 2
I-VOPs std. deviation: 0
I-VOPs max DRF: 2
P-VOPs average DRF: 2
P-VOPs std. deviation: 0
P-VOPs max DRF: 2
B-VOPs average DRF: 4
B-VOPs std. deviation: 0
B-VOPs max DRF: 4
[ Profile compliancy ]
Profile to check: Home Theater PAL
Resolution: Ok
Framerate: Ok
Buffer underflow: 00:02:04 (frame 3108)
Buffer underflow: 00:08:00 (frame 12006)
Buffer underflow: 00:08:02 (frame 12046)
Buffer underflow: 00:08:04 (frame 12092)
Buffer underflow: 00:08:05 (frame 12133)
Buffer underflow: 00:12:25 (frame 18627)
Buffer underflow: 00:14:04 (frame 21098)
Buffer underflow: 00:14:05 (frame 21127)
Buffer underflow: 00:14:27 (frame 21673)
Buffer underflow: 00:14:28 (frame 21690)
Buffer underflow: 00:14:44 (frame 22097)
Buffer underflow: 00:14:45 (frame 22117)
Buffer underflow: 00:14:45 (frame 22137)
Buffer underflow: 00:14:46 (frame 22153)
Buffer underflow: 00:14:47 (frame 22165)
Buffer underflow: 00:14:47 (frame 22173)
Buffer underflow: 00:22:49 (frame 34216)
Buffer underflow: 00:22:50 (frame 34240)
Buffer underflow: 00:39:54 (frame 59848)
Buffer underflow: 00:51:36 (frame 77389)
Error: Too many violations...
This report was created by AVInaptic (07-10-2007) on 7 nov 2007, h 14:50:59
The resolution shown with AVINaptic differs from the resolution shown by AutoGk.
There is a message regarding a missing key-frame in the beginning of the file (isn't this checked by AutoGk ?).
There are many messages regarding 'buffer underflow'.
Is there anybody who can explain all these strange behaviours ??
Cheers,
joe
EvilAaron
7th November 2007, 17:24
You could try
Make sure that avinaptic is set to HT.
I assume "set to HT" is referring to profiles tab under preferences "Home Theatre" setting. If this is not the case please correct me and I will re-compare.
Re-encoded with ESS setting enabled same undersize result as first time.
AVInaptic log for undersize ESS encode.
[ About file ]
Name: Gardens of Destiny ESS Test.avi
Date: 6/11/2007 18:56:11
Size: 578,201,600 bytes (551.416 MB)
[ Generic infos ]
Play duration: 01:15:05 (4505.367533 s)
Container type: AVI OpenDML
Number of streams: 2
Type of stream nr. 0: video
Type of stream nr. 1: audio
Audio streams: 1
ISFT: VirtualDubMod 1.5.4.1 (build 2178/release)
IAS1: ???
JUNK: VirtualDubMod build 2178/release
[ Relevant data ]
Resolution: 448 x 336
Width: multiple of 32
Height: multiple of 16
Average DRF: 4.641619
Standard deviation: 1.365858
Std. dev. weighted mean: 0.630294
[ Video track ]
FourCC: xvid/XVID
Resolution: 448 x 336
Frame aspect ratio: 4:3 = 1.333333
Pixel aspect ratio: 1:1 = 1
Display aspect ratio: 4:3 = 1.333333
Framerate: 29.970029 fps
Number of frames: 135026
Stream size: 509,345,609 bytes
Bitrate: 904.424520 kbps
Qf: 0.200478
Key frames: 586 (0; 300; 600; 639; 939; ... 135018)
Null frames: 0
Min key int: 1
Max key int: 300
Avg key int: 230.419795
Delay: 0 ms
[ Audio track ]
Audio tag: 0x55 (MP3)
Bitrate (container): 108.312 kbps VBR
Channels (container): 2
Sample rate (container): 48000 Hz
Chunks: 187724
Stream size: 60,998,256 bytes
Preload: 504 ms
Max A/V diff: 528 ms
Type: MPEG-1 Layer III
Encoder: LAME3.97
MPEG frames: 187724
Play duration: 01:15:05 (4505.376 s)
Bitrate (bitstream): 108.311947 kbps VBR
Chunk-aligned: Yes
Emphasis: none
Mode: joint stereo
Delay: 0 ms
[ About MPEG4 encoding ]
User data: DivX503b1393p
User data: XviD0047
Packed bitstream: Yes
QPel: No
GMC: No
Interlaced: No
Aspect ratio: Square pixels
Quant type: H.263
Number of frames: 135026
Drop/delay frames: 0
Corrupted frames: 0
I-VOPs: 586 ( 0.434 %)
P-VOPs: 67493 ( 49.985 %) ############
B-VOPs: 66948 ( 49.581 %) ############
S-VOPs: 0 ( 0.000 %)
N-VOPs: 0 ( 0.000 %)
Max consecutive B-VOPs: 1
[ DRF analysis ]
Average DRF: 4.655217
Standard deviation: 1.429069
Max DRF: 24
DRF<2: 0 ( 0.000 %)
DRF=2: 767 ( 0.568 %)
DRF=3: 36462 ( 27.003 %) #######
DRF=4: 31204 ( 23.109 %) ######
DRF=5: 21937 ( 16.246 %) ####
DRF=6: 31227 ( 23.126 %) ######
DRF=7: 13128 ( 9.722 %) ##
DRF=8: 72 ( 0.053 %)
DRF=9: 15 ( 0.011 %)
DRF>9: 215 ( 0.159 %)
I-VOPs average DRF: 3.373720
I-VOPs std. deviation: 0.622605
I-VOPs max DRF: 10
P-VOPs average DRF: 3.452728
P-VOPs std. deviation: 0.596196
P-VOPs max DRF: 19
B-VOPs average DRF: 5.878711
B-VOPs std. deviation: 0.887795
B-VOPs max DRF: 24
[ DRF analysis (corrected) ]
End credits time position: 01:14:47 (4487.015866 s) - ignored frames: 550
Average DRF: 4.641619
Standard deviation: 1.365858
Max DRF: 13
DRF<2: 0 ( 0.000 %)
DRF=2: 697 ( 0.518 %)
DRF=3: 36415 ( 27.079 %) #######
DRF=4: 31082 ( 23.113 %) ######
DRF=5: 21857 ( 16.253 %) ####
DRF=6: 31207 ( 23.206 %) ######
DRF=7: 13118 ( 9.755 %) ##
DRF=8: 70 ( 0.052 %)
DRF=9: 12 ( 0.009 %)
DRF>9: 19 ( 0.014 %)
I-VOPs average DRF: 3.365351
I-VOPs std. deviation: 0.557469
I-VOPs max DRF: 9
P-VOPs average DRF: 3.445528
P-VOPs std. deviation: 0.522387
P-VOPs max DRF: 8
B-VOPs average DRF: 5.858627
B-VOPs std. deviation: 0.739718
B-VOPs max DRF: 13
[ Profile compliancy ]
Profile to check: Home Theater NTSC
Resolution: Ok
Framerate: Ok
Min buffer fill: 80%
This report was created by AVInaptic (27-10-2007) on 6 nov 2007, h 19:40:02
AVInaptic log for MTL/Sigma encode,
[ About file ]
Name: Gardens.of.Destiny.-.with.Dan.Jason.-.MTK-Sigma.avi
Date: 27/10/2007 11:13:23
Size: 732,686,336 bytes (698.744 MB)
[ Generic infos ]
Play duration: 01:15:05 (4505.367533 s)
Container type: AVI OpenDML
Number of streams: 2
Type of stream nr. 0: video
Type of stream nr. 1: audio
Audio streams: 1
ISFT: VirtualDubMod 1.5.4.1 (build 2178/release)
IAS1: ???
JUNK: VirtualDubMod build 2178/release
[ Relevant data ]
Resolution: 512 x 384
Width: multiple of 32
Height: multiple of 32
Average DRF: 4.023025
Standard deviation: 1.201172
Std. dev. weighted mean: 0.660634
[ Video track ]
FourCC: xvid/XVID
Resolution: 512 x 384
Frame aspect ratio: 4:3 = 1.333333
Pixel aspect ratio: 1:1 = 1
Display aspect ratio: 4:3 = 1.333333
Framerate: 29.970029 fps
Number of frames: 135026
Stream size: 663,862,348 bytes
Bitrate: 1178.793682 kbps
Qf: 0.200055
Key frames: 585 (0; 300; 600; 639; 939; ... 135018)
Null frames: 0
Min key int: 1
Max key int: 300
Avg key int: 230.813675
Delay: 0 ms
[ Audio track ]
Audio tag: 0x55 (MP3)
Bitrate (container): 108.312 kbps VBR
Channels (container): 2
Sample rate (container): 48000 Hz
Chunks: 187724
Stream size: 60,998,256 bytes
Preload: 504 ms
Max A/V diff: 528 ms
Type: MPEG-1 Layer III
Encoder: LAME3.97
MPEG frames: 187724
Play duration: 01:15:05 (4505.376 s)
Bitrate (bitstream): 108.311947 kbps VBR
Chunk-aligned: Yes
Emphasis: none
Mode: joint stereo
Delay: 0 ms
[ About MPEG4 encoding ]
User data: XviD0047
Packed bitstream: No
QPel: No
GMC: No
Interlaced: No
Aspect ratio: Square pixels
Quant type: MPEG custom (*)
Custom intra quant matrix:
8 16 20 23 27 30 32 34
16 16 23 24 29 31 34 38
20 23 27 28 30 35 38 40
23 24 28 29 35 39 40 44
27 29 30 35 39 42 45 50
30 31 35 39 42 46 54 59
32 34 38 40 45 54 62 72
34 38 40 44 50 59 72 84
Custom inter quant matrix:
17 19 21 23 25 27 29 31
19 21 23 25 27 28 29 33
21 23 25 27 29 30 32 37
23 25 27 30 31 34 40 45
25 27 29 31 38 46 54 60
27 28 30 34 46 58 72 74
29 29 32 40 54 72 90 100
31 33 37 45 60 74 100 124
Number of frames: 135026
Drop/delay frames: 0
Corrupted frames: 0
I-VOPs: 585 ( 0.433 %)
P-VOPs: 67501 ( 49.991 %) ############
B-VOPs: 66937 ( 49.573 %) ############
S-VOPs: 0 ( 0.000 %)
N-VOPs: 3 ( 0.002 %)
Max consecutive B-VOPs: 1
[ DRF analysis ]
Average DRF: 4.023025
Standard deviation: 1.201172
Max DRF: 7
DRF<2: 0 ( 0.000 %)
DRF=2: 8313 ( 6.157 %) ##
DRF=3: 48962 ( 36.262 %) #########
DRF=4: 27749 ( 20.551 %) #####
DRF=5: 34590 ( 25.618 %) ######
DRF=6: 12120 ( 8.976 %) ##
DRF=7: 3289 ( 2.436 %) #
DRF>7: 0 ( 0.000 %)
I-VOPs average DRF: 3.365811
I-VOPs std. deviation: 0.532236
I-VOPs max DRF: 7
P-VOPs average DRF: 3.034399
P-VOPs std. deviation: 0.529567
P-VOPs max DRF: 6
B-VOPs average DRF: 5.025725
B-VOPs std. deviation: 0.793926
B-VOPs max DRF: 7
[ Profile compliancy ]
Profile to check: Home Theater NTSC
Resolution: Ok
Framerate: Ok
Min buffer fill: 60%
This report was created by AVInaptic (27-10-2007) on 6 nov 2007, h 19:47:09
adeerre
30th November 2007, 13:22
Helo.
I have the same problem with 2.40 version, with a film 1:40 min., proyect size 1493 MB, audio VBR 192 kbit
compressibily test: 140%
after the ferst pass: espective quality 104% (i guess this is the problem)
result: undersize(-100 MB aprox)
my solution:add a second sound chanel. Result: compressibily test under 100%, final proyect size OK!! but whith 2 chanel audio and the video quality not the same,
Less than i expect
ESS standalone activate, codec xvid
sorry for my english
Pulp Catalyst
30th November 2007, 17:36
same thing happened to me, 2.48, Xvid MTK recommened by len0x,
interlaced material, ESS selected, target size 700MB,
file came out at 551mb, weird, as i was on the clock, i had to use Fairuse Wizard instead,
be nice to know what is causing this however, weird how ESS option can cause so much trouble,
paolocorpo
28th December 2007, 00:11
I have the some issue
2.48 beta
If I choose an Xvid of 2Gb i obtain a file sized 500 or 800 Mb maximun
I tried to unistall and reinstall without success
Any idea?
I noted that at the end of first pass the dmension is right; at the end of second pass teh dimension is smaller than i choose
s3rious
28th December 2007, 18:13
As far as i know if you want to use the ESS option in AutoGK then you better use the Xvid supplied with AutoGK . If you are using any other Xvid version like me (i use Xvid 1.1.2) then you shouldnt use the ESS or MTK option in AutoGK i.e Disable it or else you will get undersized files
paolocorpo
3rd January 2008, 23:24
As far as i know if you want to use the ESS option in AutoGK then you better use the Xvid supplied with AutoGK . If you are using any other Xvid version like me (i use Xvid 1.1.2) then you shouldnt use the ESS or MTK option in AutoGK i.e Disable it or else you will get undersized files
May thanks for yout help
I tried to use GK 0.35.0 but i have the some issue
So now i am fixing the problem using the DivX encoder: i obtain files correctly sized as i have choosen (2000 Mb in my case) without errors in dimension.
I don't know why but Xvid encoding chnage (only after second pass) completely the dimension and the quality (obviously) of file encoded.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.