raziel666
15th January 2007, 14:16
I thought I had understood everything concerning the encoding of anamorphic DVDs, but after I saw something I'm a little confused. I noticed in some (very respectable) group's encoding (x264, mkv) the following
(from MPC->Properties->Details):
Video size: 704x384 (AR 117:64)
Video: MPEG4 Video (H264) 704x384 (64:35) 23.98fps
If I open it in MKVmerge, the display width/height is 704x385. How are these numbers explained? The standard I've seen on most DVD encodes is a video size of 720/704x480 with AR of 853x480, so this was somewhat strange.
Let's say now that there's a R1 NTSC DVD for encoding. When I create the AVScript in MeGUI choosing Clever Anamorphic encoding, it says Input DAR ITU 16:9 1,823. Before cropping the AVScript is as follows:
# Set DAR in encoder to 37 : 20. The following line is for automatic signalling
global MeGUI_darx = 37
global MeGUI_dary = 20
DGDecode_mpeg2source("")
Lanczos4Resize(720,480) # Lanczo4 (Sharp)
If I crop it to remove black bars, the script becomes as follows:
# Set DAR in encoder to 37 : 20. The following line is for automatic signalling
global MeGUI_darx = 37
global MeGUI_dary = 20
DGDecode_mpeg2source("")
crop( 2, 6, -2, -14)
Lanczos4Resize(720,464) # Lanczo4 (Sharp)
My question is, after cropping, should I change the 37:20 DA ratio, and if yes, how should I change it? Is there some "general" rule? Is there a need to change the setting in MKVmerge?
(from MPC->Properties->Details):
Video size: 704x384 (AR 117:64)
Video: MPEG4 Video (H264) 704x384 (64:35) 23.98fps
If I open it in MKVmerge, the display width/height is 704x385. How are these numbers explained? The standard I've seen on most DVD encodes is a video size of 720/704x480 with AR of 853x480, so this was somewhat strange.
Let's say now that there's a R1 NTSC DVD for encoding. When I create the AVScript in MeGUI choosing Clever Anamorphic encoding, it says Input DAR ITU 16:9 1,823. Before cropping the AVScript is as follows:
# Set DAR in encoder to 37 : 20. The following line is for automatic signalling
global MeGUI_darx = 37
global MeGUI_dary = 20
DGDecode_mpeg2source("")
Lanczos4Resize(720,480) # Lanczo4 (Sharp)
If I crop it to remove black bars, the script becomes as follows:
# Set DAR in encoder to 37 : 20. The following line is for automatic signalling
global MeGUI_darx = 37
global MeGUI_dary = 20
DGDecode_mpeg2source("")
crop( 2, 6, -2, -14)
Lanczos4Resize(720,464) # Lanczo4 (Sharp)
My question is, after cropping, should I change the 37:20 DA ratio, and if yes, how should I change it? Is there some "general" rule? Is there a need to change the setting in MKVmerge?