VideoHelp Forum




+ Reply to Thread
Results 1 to 2 of 2
  1. 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:

    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()
    I think the problem comes from lanczosresize because I want to convert my dvd (16/9) PAL to SVCD PAL (4/3).

    What do I need to change in my avisynth script.

    Thanks.
    Quote Quote  
  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?
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!