I have made a PAL DVD (16:9) conversion using these steps
1. Smart Ripper to rip DVD.
2. DVD2AVI to save the project file.
3. VFAPI Converter to make a "fake" . file
4. TMPGEnc. to convert the audio using external Toolame.exe
5. AVISynth. an .avs script opening the .avs file created by VFAPI convertor and adding the following lines:
AVISource(“C:\abcd_vfapi.avi”)
BicubicResize(480,576)
6. CCE 2.5 to encode the .avs file using 4 passes.
7. Multiplexing using bbMPEG (the AVI2MPG2.exe).
The problem is that finished .mpg files are stretched when I play those files using WINDVD through playlist command. Also the picture is little jerky.
What have I done wron? How can I correct this problem in particular the aspect ratio problem.
Thanking you in advance.
+ Reply to Thread
Results 1 to 7 of 7
-
"Seek you will find it"
-
AVISource(“C:\abcd_vfapi.avi”)
BicubicResize(480,432)
AddBorders(0,72,0,72)
Even better: Install the latest Avisynth and the MPEG2DEC plugin (I recommend the latest, modified by dividee). Then you don't need to use VFAPI.
LoadPlugin("C:\full path\MPEG2DEC.dll")
mpeg2source("D:\full path\abcd.d2v")
BicubicResize(480,432)
AddBorders(0,72,0,72)
or
LoadPlugin("C:\full path\MPEG2DEC.dll")
mpeg2source("D:\full path\abcd.d2v")
Crop(0,72,720,432)
BicubicResize(480,320)
AddBorders(0,128,0,128)
-
icemanatvcd, I remember you have a widescreen TV and don't want to add borders. So although the picture is stretched when you play those files using WINDVD, the TV should display the correct aspect ratio.
btw, you can change the displayed aspect ratio of WinDVD.
P.S. My head is clear now -
Thanks for that Truman as they say in Australia here, you are a legend! I will try this, that means encoding with CCE 2.5 for another 25 hours! Great! I might as well use DVD2SVCD. You are right I have a wide screen TV but some times I watch them on my PC so others can sleep! I tried changing the ratio on WINDVD still did not make any difference. I Will try your method though.
Thanks once again.
"Seek you will find it" -
Just one more questions Truman, what is the difference between
AddBorders(0,72,0,72) and
AddBorders(0,128,0,12
Thanks in advance.
"Seek you will find it" -
I suggest to use a short (5 minutes?) clip to have some tests.
-
<TABLE BORDER=0 ALIGN=CENTER WIDTH=85%><TR><TD><font size=-1>Quote:</font><HR size=1 color=black></TD></TR><TR><TD><FONT SIZE=-1><BLOCKQUOTE>
what is the difference between
AddBorders(0,72,0,72) and
AddBorders(0,128,0,128)
</BLOCKQUOTE></FONT></TD></TR><TR><TD><HR size=1 color=black></TD></TR></TABLE>
The difference is, that I cropped the borders of the source file using the 2nd script. That's why I have to add larger borders afterwards. When I crop before encoding, I get a slight speed increase.
72+432+72=576
128+320+128=576
<font size=-1>[ This Message was edited by: Truman on 2001-10-15 20:06:19 ]</font>
Similar Threads
-
can someone answer a general aspect ration question to me
By consumerx in forum Newbie / General discussionsReplies: 4Last Post: 1st Nov 2010, 10:58 -
CloneDVD aspect ration problem
By godftw in forum DVD RippingReplies: 13Last Post: 6th Aug 2010, 16:13 -
Aspect Ration ?'s (Avs video converter)
By VicSedition in forum Newbie / General discussionsReplies: 1Last Post: 22nd Feb 2010, 20:59 -
Aspect ration problems when encoding in VDub
By sd_smoker in forum Newbie / General discussionsReplies: 12Last Post: 5th Jul 2008, 11:24 -
DV AVI to FLV - Squished video - aspect ration 4:3 really 3:2???
By Tfp in forum Video ConversionReplies: 4Last Post: 6th Jun 2008, 19:54