Log in

View Full Version : Convert 2.35:1 ratio to 1.85:1 using DVD2SVCD


grmusic
7th November 2002, 02:01
I have a vision problem and prefer watching movies with a 1.85:1 aspect ratio.

In tmpeg you can choose "No borders, keep aspect ratio" to get a similar effect, but I use dvd2svcd because it yields great results.

I use DVD2SVCD to create vcd's. I don't create svcd's because of the number of discs.

Can someone please tell me the proper syntax to create a 1.85:1 copy from an original dvd with a ratio of 2.35:1?

I know you can edit the avisynth file before encoding in dvd2svcd, I have read the forum but maybe I missed a post somewhere.

Any help is appreciated.

markrb
7th November 2002, 03:37
Search works.

http://forum.doom9.org/search.php?s=&action=showresults&searchid=407562&sortby=lastpost&sortorder=descending

Mark

grmusic
7th November 2002, 18:05
I have found the following avisynth script to convert from 2.35 to 1.85 with svcd:

LoadPlugin("D:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("G:\Ripping\DVD2AV~1.D2V")
Crop(90,0,540,480)
BicubicResize(480,480,0.00,0.60)


What I am asking for is a similar script for vcd?

markrb
7th November 2002, 18:21
Ok then. I am going to move this to the Avisynth forum. I think they will be able to help you better. If you don't get a reply in a reasonable amount of time feel free to post here again. Unfortunetly the best guy to answer your question in this forum is no longer around.

Mark

neo_sapien
8th November 2002, 02:10
#2.35:1 to 1.85:1 Conversion for NTSC
LoadPlugin("D:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("G:\Ripping\DVD2AV~1.D2V")
Crop(90,0,540,480)
BicubicResize(352,240,0.00,0.60)

#2.35:1 NTSC to 1.85:1 PAL Conversion from NTSC Source
LoadPlugin("D:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("G:\Ripping\DVD2AV~1.D2V")
Crop(90,0,540,480)
BicubicResize(352,288,0.00,0.60)
AssumeFPS(25.000)#--Adjusts to PAL framerate

grmusic
8th November 2002, 18:08
Thank you, it worked great!

Thanks to the Forum for being here.

neo_sapien
9th November 2002, 03:55
No prob, just had to change the size for NTSC VCD.