I didn't try to move a mountain to get this done, but have been searching for an easy solution for quite a while to get large videos resized down to 800x480 with correct aspect-ratio and keeping the same quality (except for the fewer pixels).
With mencoder I just got a crappy quality out of it. It's probably possible, but all these parameters annoy me.
With avidemuxer i had problems that some audio-codec was not supported.
With arista i ran in some other problem.
What seems to work nicely is to use ffmpeg:
Note that you should give the output-file the same filename-extension as the input-file (e.g. ".avi") unless you want to change format/container/whatever_it's_called.
I only converted two movies so far, but the aspect ratio seems to be kept. Though I'm not 100% sure. Maybe i was just lucky that the original videos were close to the ratio of 800:480, but i read somewhere that ffmpeg uses the values "800" and "480" as maximum-values. So I'm confident.
Just in case someone finds this useful.
With mencoder I just got a crappy quality out of it. It's probably possible, but all these parameters annoy me.
With avidemuxer i had problems that some audio-codec was not supported.
With arista i ran in some other problem.
What seems to work nicely is to use ffmpeg:
Code:
ffmpeg -i <input-file> -sameq -s 800x480 <output-file>
Note that you should give the output-file the same filename-extension as the input-file (e.g. ".avi") unless you want to change format/container/whatever_it's_called.
I only converted two movies so far, but the aspect ratio seems to be kept. Though I'm not 100% sure. Maybe i was just lucky that the original videos were close to the ratio of 800:480, but i read somewhere that ffmpeg uses the values "800" and "480" as maximum-values. So I'm confident.
Just in case someone finds this useful.
Last edited by a moderator: