Hi,
I have a video from dvd (16/9), I resize it with avisynth and then I load my avs file in tmpgenc plus. In the source format, I select "16/9 display" and "fullscreen" in Video arrange method.
When I play my encoded video, i don't have the black bars anymore ???
Here is my avisynth script:
I think the problem comes from lanczosresize because I want to convert my dvd (16/9) PAL to SVCD PAL (4/3).Code:Loadplugin("c:\program files\multimedia\outils video\avisynth\plugins\mpeg2dec3.dll") video=mpeg2source("d:\dvd\video.d2v") audio=wavsource("d:\dvd\audio_44.1khz.wav") audiodub(video,audio) LanczosResize(480,576) limiter()
What do I need to change in my avisynth script.
Thanks.
+ Reply to Thread
Results 1 to 2 of 2
-
-
I don't use tmpgenc, i use cce through dvd2svcd (dvd2svcd make things very easy). It does the resizing automatically according to what options u select. But i have looked at and edited the avisynth script and although i still fairly new at this i think i can help.
I not quite sure what u are asking but i assume this:
You want maintain the 16:9 aspect and convert to 4:3 SVCD. To do this you can't make the video fullscreen without cropping the left and right edges alot. You instead need to have the black bars - i believe u understand this. If this is the case and you want the black bars to maintain aspect without cropping then your resizing is wrong. Your need to reduce the vertical resolution to 432 and add black borders to make up the rest of the 576.
ie.
LanczosResize(480,432)
AddBorders(0,72,0,72)
Hope that works (it should - thats what dvd2svcd does automatically)
Except i use BicubicResize(448,432,0.0,0.6)
what does limiter() do by the way?
Similar Threads
-
Frame resize
By drgt in forum Newbie / General discussionsReplies: 26Last Post: 28th Nov 2010, 11:51 -
TMPGEnc resize problem
By Vatrik in forum Video ConversionReplies: 17Last Post: 15th Mar 2010, 06:27 -
MT2S - Resize
By HamishT in forum Video ConversionReplies: 4Last Post: 19th Jul 2009, 21:15 -
Resize HD to SD
By ron spencer in forum Authoring (Blu-ray)Replies: 9Last Post: 1st Jan 2009, 12:52 -
.sup resize...
By alcOre in forum SubtitleReplies: 1Last Post: 1st Dec 2008, 03:57