You are not logged in.
Pages: 1
Has anybody used any tools to downconvert video? I need 720 to 480, my puny laptop can't quite handle 720 and there are a few movies I'd like to watch.
The files are .avi, if that means anything.
Offline
I have a little script at home (I'm at work now) that will convert videos for my rockbox'd iPod; I'll try to remember to post it for you. A quick Google search found this:
http://www.freemyipod.org/wiki/MPEG_movies
Just change the reolution in the command to 720x480. 
while ( ! ( succeed = try() ) );
We've earned a reputation as a nice, friendly community; please help us keep it that way.
Offline
Ok thanks, I will give that a whirl.
Offline
OK, here's a modified version of my iPod Rockbox script:
#!/bin/bash
for i in *.avi
do
avconv -i "$i" -vf "scale=720:-1" -vcodec mpeg2video -b:v 500k -acodec libmp3lame -ab 192k -y "converted/${i%.avi}.mpg"
doneNote that the original script was specifically written (by somebody else) to convert videos of any format to mpeg-2 with good quality for the iPod's smaller screen and preserve the original aspect ratio. (The '-vf "scale=720:-1"' should do the same thing at a final resolution that fits your screen (at fullscreen).)
while ( ! ( succeed = try() ) );
We've earned a reputation as a nice, friendly community; please help us keep it that way.
Offline
Pages: 1
Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.