marnix88
12th July 2006, 00:14
Hello, I have a problem with calculating borders (AVI to DVD).
Below is a calculation I use with a NTSC DVD and it always works fine.
DVD Size = 720 x 480
AVI Size = 624 x 256
720 - 624 = 96
256 + 96 = 352
480 - 352 = 128
128 / 2 = 64
AVISource("C:\testclip.avi")
LanczosResize(720,352)
AddBorders(0,64,0,64)
I thought that with a PAL DVD you only have to make the borders 'bigger', but that doesn't work. Everything looks squeezed.
DVD Size = 720 x 576
AVI Size = 624 x 256
720 - 624 = 96
256 + 96 = 352
576 - 352 = 224
224 / 2 = 112
AVISource("C:\testclip.avi")
LanczosResize(720,352)
AddBorders(0,112,0,112)
DVD2SVCD gives me the following numbers and they are correct.
BicubicResize(720,428,0.0,0.6)
AddBorders(0,74,0,74)
How does DVD2SVCD calculate these borders?
I understand the part below, but where is the '428' coming from?
576 - 428 = 148
148 / 2 = 74
Below is a calculation I use with a NTSC DVD and it always works fine.
DVD Size = 720 x 480
AVI Size = 624 x 256
720 - 624 = 96
256 + 96 = 352
480 - 352 = 128
128 / 2 = 64
AVISource("C:\testclip.avi")
LanczosResize(720,352)
AddBorders(0,64,0,64)
I thought that with a PAL DVD you only have to make the borders 'bigger', but that doesn't work. Everything looks squeezed.
DVD Size = 720 x 576
AVI Size = 624 x 256
720 - 624 = 96
256 + 96 = 352
576 - 352 = 224
224 / 2 = 112
AVISource("C:\testclip.avi")
LanczosResize(720,352)
AddBorders(0,112,0,112)
DVD2SVCD gives me the following numbers and they are correct.
BicubicResize(720,428,0.0,0.6)
AddBorders(0,74,0,74)
How does DVD2SVCD calculate these borders?
I understand the part below, but where is the '428' coming from?
576 - 428 = 148
148 / 2 = 74