I have a video that is 320x240
I want it to be 352 x 240.
What is the best way to put a few lines at the top and a few at the bottom?
This I hope shouldn't take a few hours...
+ Reply to Thread
Results 1 to 6 of 6
-
-
You could use AVISynth to add borders to your video.
AVISource("whatever.avi")
AddBorders(16,0,16,0)
That's gonna look like crap though having those black bars on the sides of your screen. I would try resizing the image and see how that looks before I went with the borders.
AVISource("whatever.avi")
LanczosResize(352,240)
or
AVISource("whatever.avi")
BicubicResize(352,240)
Your vertical already has 240 lines so you don't need to add anything to it, but if you insist on having bars at the top & bottom as well, you can use the AddBorders command in conjunction with a resize, but you have to compensate one with the other.
AVISource("whatever.avi")
BicubicResize(320,230)
AddBorders(16,5,16,5)
Which would give you a 352x240 frame with 16 lines to either side and 5 at the top & bottom.
...as well as look like crap :P
PS,
How many threads do we really need on this subject?"There is nothing in the world more helpless and irresponsible and depraved than a man in the depths of an ether binge, and I knew we'd get into that rotten stuff pretty soon." -- Raoul Duke
Similar Threads
-
MKV2VOB convert back to DTS, So it can be played on other media box.
By kivawolf in forum Video ConversionReplies: 2Last Post: 7th Nov 2011, 14:15 -
Put back my HD Files and playback again from camera
By mavelgr in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 1Last Post: 19th Jul 2011, 15:37 -
How to separate audio from VOB, change it and then put it back?
By jatemail in forum EditingReplies: 1Last Post: 18th Aug 2009, 00:44 -
Mediacoder - Letter box / Crop to resize to add subtitle ?
By kehn in forum Newbie / General discussionsReplies: 1Last Post: 27th Jun 2009, 12:52 -
Remove Letter Box
By Chala in forum Software PlayingReplies: 11Last Post: 21st Apr 2009, 21:52