*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.
+ Reply to Thread
Results 1 to 5 of 5
-
-
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 -
BilinearResize(480,480)
Letterbox(70,70) or whatever you need it to be
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? -
Originally Posted by Ejoc
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. -
Thanks, thats what I thought, but just couldnt get why it seemed like every AVISynth exampled did that.
Similar Threads
-
Resize & Crop MKV
By Kand in forum Video ConversionReplies: 2Last Post: 22nd Apr 2012, 13:50 -
Tool to aid in crop+resize
By Quaraxkad in forum Newbie / General discussionsReplies: 4Last Post: 26th Sep 2009, 18:16 -
Can I crop and resize video?
By maldb in forum EditingReplies: 6Last Post: 13th Jun 2009, 19:06 -
Video Crop and resize
By quxote in forum EditingReplies: 4Last Post: 27th Feb 2009, 11:48 -
Crop, then resize to 240x320?
By miamicanes in forum EditingReplies: 2Last Post: 29th Dec 2008, 23:56