VideoHelp Forum




+ Reply to Thread
Results 1 to 5 of 5
  1. *If you have a movie thats is letterboxed fine, do you need to crop just the video, resize and add new black bars, or cant you just do a single resize.

    example:
    crop(0,60,720,360)
    bicubicresize(480,360)
    addborders(0,60,0,60)

    versus:
    bicubicresize(480,480)

    In my head it seems like the bicubicresize(480,480) would do the same thing, only faster. Yet every guide seems to want to do the croping.

    Now I have done the cropping when the video source was slightly off center and there was a black line on one side of the image, and the cropping was exactly what I needed to recenter it.

    Anyone who doesnt use AVISnyth is missing out, Im totaly in love with it, it makes fixing Telecide / interlaced / subtitled sources a dream, and when everything is done in AVISynth TMPENC run so fast, and the .avs scripts are just a few lines long.
    Quote Quote  
  2. why not

    BilinearResize(480,480)
    Letterbox(70,70) or whatever you need it to be

    you dont have to crop and add the black lines if you use letterbox.
    HELL AINT A BAD PLACE TO BE
    Quote Quote  
  3. BilinearResize(480,480)
    Letterbox(70,70) or whatever you need it to be
    That is a faster method then the
    crop(...)
    resize(...)
    addborder(...)

    but its basicly doing the exact same thing as it. I guess my question is more, if there are black bars above and below the picture, why remove them just to add em back?

    /edit
    when you crop out the black bars and use addborder or letterbox, are those black bars a part of the encoded image or is only the actual video encoded and the bars are added by the program/dvd player viewing it?
    Quote Quote  
  4. Member
    Join Date
    Feb 2001
    Location
    Berlin, Germany
    Search Comp PM
    Originally Posted by Ejoc
    ... if there are black bars above and below the picture, why remove them just to add em back?
    If you don't want to change the aspect ratio, you don't need to resize and add borders. For example you have a 4:3 DVD source and want to convert to 4:3 SVCD, just resize to svcd resolution.

    BilinearResize(480,480)

    If the original bars are noisy, you will waste bitrate, then use Letterbox instead, that will cover that part with solid color borders.

    BilinearResize(480,480)
    Letterbox(60,60)

    Of course those bars are a part of the encoded image.
    Quote Quote  
  5. Thanks, thats what I thought, but just couldnt get why it seemed like every AVISynth exampled did that.
    Quote Quote  



Similar Threads

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