Backflip
16th June 2005, 18:11
Hi I encoded a small music video from the SAW (PAL) DVD using the File input option of AutoGK. I used the 1:1 - Original option to get a anamorphically encoded file. My file (VOB) is 4:3. After that I use MMG to create a MKV file.
Now, the question is - how do I know what vertical resolution number to give it so the display is the correct AR? There's no information about the music video's AR on the casing etc of the original DVD.
This is my log:
[6/14/2005 11:44:35 AM] AutoGK 2.08b
[6/14/2005 11:44:35 AM] OS: WinXP (5.1.2600).2
[6/14/2005 11:44:35 AM] Job started.
[6/14/2005 11:44:35 AM] Input file: VTS_06_1.VOB
[6/14/2005 11:44:35 AM] Output file: C:\New Folder (3)\1.avi
[6/14/2005 11:44:35 AM] Output codec: XviD
[6/14/2005 11:44:35 AM] Audio1: Audio Stream 0 AC3
[6/14/2005 11:44:35 AM] Subtitles: none
[6/14/2005 11:44:35 AM] Format: .AVI
[6/14/2005 11:44:35 AM] Target size: 70Mb
[6/14/2005 11:44:35 AM] Custom audio settings: AC3
[6/14/2005 11:44:35 AM] Started encoding.
[6/14/2005 11:44:35 AM] Demuxing and indexing.
[6/14/2005 11:44:38 AM] Processing file: C:\New Folder (3)\VTS_06_1.VOB
[6/14/2005 11:44:38 AM] Source aspect ratio: 4:3
[6/14/2005 11:44:38 AM] Manual aspect ratio: Original
[6/14/2005 11:44:38 AM] Source resolution: 720x576
[6/14/2005 11:44:38 AM] Found PAL source.
[6/14/2005 11:44:38 AM] Analyzing source.
[6/14/2005 11:45:10 AM] Source has percentage of interlacing in motion areas: 58.05
[6/14/2005 11:45:10 AM] Source is considered to be interlaced.
[6/14/2005 11:45:10 AM] Output will contain 6139 frames
[6/14/2005 11:45:10 AM] Audio1 size: 6,875,008 bytes (6.56 Mb)
[6/14/2005 11:45:10 AM] Overhead: 40,960 bytes (0.04 Mb)
[6/14/2005 11:45:10 AM] Video size: 66,484,352 bytes (63.40 Mb)
[6/14/2005 11:45:10 AM] Running compressibility test.
[6/14/2005 11:45:10 AM] Writing the following script to C:\New Folder (3)\agk_tmp\1_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE2.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\kerneldeint.dll")
movie = mpeg2source("C:\New Folder (3)\agk_tmp\1.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
c_width = width(cropclip)
c_height = round(height(cropclip) / fixed_aspect)
input_par = float(c_width)/float(c_height)
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
KernelDeInt(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(45,15)
===========================================================
[6/14/2005 11:47:18 AM] Duration was: 2 minutes 7 seconds
[6/14/2005 11:47:18 AM] Speed was: 15.83 fps.
[6/14/2005 11:47:18 AM] Compressibility percentage is: 87.79
[6/14/2005 11:47:18 AM] Chosen resolution is: 704x432 ( AR: 1.63 )
[6/14/2005 11:47:18 AM] Predicted comptest value is: 70.94
[6/14/2005 11:47:18 AM] Running first pass.
[6/14/2005 11:47:18 AM] Writing the following script to C:\New Folder (3)\agk_tmp\1_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE2.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\kerneldeint.dll")
movie = mpeg2source("C:\New Folder (3)\agk_tmp\1.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
c_width = width(cropclip)
c_height = round(height(cropclip) / fixed_aspect)
input_par = float(c_width)/float(c_height)
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
KernelDeInt(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)
===========================================================
[6/14/2005 11:50:41 AM] Duration was: 3 minutes 23 seconds
[6/14/2005 11:50:41 AM] Speed was: 30.18 fps.
[6/14/2005 11:50:41 AM] Expected quality of first pass size: 74.09
[6/14/2005 11:50:41 AM] Running second pass.
[6/14/2005 11:56:45 AM] Duration was: 6 minutes 4 seconds
[6/14/2005 11:56:45 AM] Speed was: 16.86 fps.
[6/14/2005 11:56:45 AM] Job finished. Total time: 12 minutes 9 seconds
Do you simply take the vertical resolution number and multiple it by 1.33 (i.e. - 416 x 1.33) to get 554, so the final resolution would be 554 x 416? It seems wrong though? What is the correct way?
Thanks in advance to anyone that can help :)
Now, the question is - how do I know what vertical resolution number to give it so the display is the correct AR? There's no information about the music video's AR on the casing etc of the original DVD.
This is my log:
[6/14/2005 11:44:35 AM] AutoGK 2.08b
[6/14/2005 11:44:35 AM] OS: WinXP (5.1.2600).2
[6/14/2005 11:44:35 AM] Job started.
[6/14/2005 11:44:35 AM] Input file: VTS_06_1.VOB
[6/14/2005 11:44:35 AM] Output file: C:\New Folder (3)\1.avi
[6/14/2005 11:44:35 AM] Output codec: XviD
[6/14/2005 11:44:35 AM] Audio1: Audio Stream 0 AC3
[6/14/2005 11:44:35 AM] Subtitles: none
[6/14/2005 11:44:35 AM] Format: .AVI
[6/14/2005 11:44:35 AM] Target size: 70Mb
[6/14/2005 11:44:35 AM] Custom audio settings: AC3
[6/14/2005 11:44:35 AM] Started encoding.
[6/14/2005 11:44:35 AM] Demuxing and indexing.
[6/14/2005 11:44:38 AM] Processing file: C:\New Folder (3)\VTS_06_1.VOB
[6/14/2005 11:44:38 AM] Source aspect ratio: 4:3
[6/14/2005 11:44:38 AM] Manual aspect ratio: Original
[6/14/2005 11:44:38 AM] Source resolution: 720x576
[6/14/2005 11:44:38 AM] Found PAL source.
[6/14/2005 11:44:38 AM] Analyzing source.
[6/14/2005 11:45:10 AM] Source has percentage of interlacing in motion areas: 58.05
[6/14/2005 11:45:10 AM] Source is considered to be interlaced.
[6/14/2005 11:45:10 AM] Output will contain 6139 frames
[6/14/2005 11:45:10 AM] Audio1 size: 6,875,008 bytes (6.56 Mb)
[6/14/2005 11:45:10 AM] Overhead: 40,960 bytes (0.04 Mb)
[6/14/2005 11:45:10 AM] Video size: 66,484,352 bytes (63.40 Mb)
[6/14/2005 11:45:10 AM] Running compressibility test.
[6/14/2005 11:45:10 AM] Writing the following script to C:\New Folder (3)\agk_tmp\1_comptest.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE2.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\kerneldeint.dll")
movie = mpeg2source("C:\New Folder (3)\agk_tmp\1.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
c_width = width(cropclip)
c_height = round(height(cropclip) / fixed_aspect)
input_par = float(c_width)/float(c_height)
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
KernelDeInt(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(45,15)
===========================================================
[6/14/2005 11:47:18 AM] Duration was: 2 minutes 7 seconds
[6/14/2005 11:47:18 AM] Speed was: 15.83 fps.
[6/14/2005 11:47:18 AM] Compressibility percentage is: 87.79
[6/14/2005 11:47:18 AM] Chosen resolution is: 704x432 ( AR: 1.63 )
[6/14/2005 11:47:18 AM] Predicted comptest value is: 70.94
[6/14/2005 11:47:18 AM] Running first pass.
[6/14/2005 11:47:18 AM] Writing the following script to C:\New Folder (3)\agk_tmp\1_movie.avs
===========================================================
LoadPlugin("C:\PROGRA~1\AutoGK\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\autocrop.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\RemoveGrainSSE2.dll")
LoadPlugin("C:\PROGRA~1\AutoGK\filters\kerneldeint.dll")
movie = mpeg2source("C:\New Folder (3)\agk_tmp\1.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
c_width = width(cropclip)
c_height = round(height(cropclip) / fixed_aspect)
input_par = float(c_width)/float(c_height)
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
KernelDeInt(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)
===========================================================
[6/14/2005 11:50:41 AM] Duration was: 3 minutes 23 seconds
[6/14/2005 11:50:41 AM] Speed was: 30.18 fps.
[6/14/2005 11:50:41 AM] Expected quality of first pass size: 74.09
[6/14/2005 11:50:41 AM] Running second pass.
[6/14/2005 11:56:45 AM] Duration was: 6 minutes 4 seconds
[6/14/2005 11:56:45 AM] Speed was: 16.86 fps.
[6/14/2005 11:56:45 AM] Job finished. Total time: 12 minutes 9 seconds
Do you simply take the vertical resolution number and multiple it by 1.33 (i.e. - 416 x 1.33) to get 554, so the final resolution would be 554 x 416? It seems wrong though? What is the correct way?
Thanks in advance to anyone that can help :)