mibanezm
29th September 2002, 10:10
I think this would be an interesting feature in DVD2SVCD. When the source is 16:9 non anamorphic, I do the following editing in the Avisynth script file:
#avisynth
#For NTSC you should crop(0,60,720,360)
LoadPlugin("C:\ARCHIV~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("F:\DVD\SRC\DVD2AVI_PROJECT_FILE.d2v")
crop(0,72,720,432) #Remove 72 lines (black borders) on top/bottom (PAL)
BicubicResize(480,576,0,0.75) #PAL resizing
You will get an anamorphic picture this way, keeping the correct aspect ratio (interesting, if you have a widescreen TV).
#avisynth
#For NTSC you should crop(0,60,720,360)
LoadPlugin("C:\ARCHIV~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("F:\DVD\SRC\DVD2AVI_PROJECT_FILE.d2v")
crop(0,72,720,432) #Remove 72 lines (black borders) on top/bottom (PAL)
BicubicResize(480,576,0,0.75) #PAL resizing
You will get an anamorphic picture this way, keeping the correct aspect ratio (interesting, if you have a widescreen TV).