This bash script is supposed to magically convert your video file to mp4 file format which you can play in your iPod in H264 format which provides very high quality video. I have only a Walkman player and the video was played very fine. I think it might be helpful for some of you.
You will have to grab ffmpeg in medibuntu repo (I compiled from daily tarball though). Usage: video2mp4 infile outfile.mp4 -- BEGIN COPY & PASTE -- ffmpeg -y -i "$1" -vcodec libx264 -pass 1 -me full -refs 3 -subq 5 -b 200k -maxrate 768k -bufsize 244k -s 320x240 -r 23.976023976 -ac 1 -bframebias 0 -level 13 -f h264 /dev/null && ffmpeg -y -i "$1" -vcodec libx264 -pass 2 -me full -refs 3 -subq 5 -b 200k -maxrate 768k -bufsize 244k -s 320x240 -r 23.976023976 -ac 1 -bframebias 0 -level 13 -acodec libfaac -ar 48000 -ab 96k -ac 2 "$2" -- END COPY & PASTE -- -- "Ubuntu" is an ancient African word, meaning "Slackware is too hard for me". http://tnhh.info/ ----------------------------------------------------------------- To get off this list, send email to [EMAIL PROTECTED] with Subject: unsubscribe -----------------------------------------------------------------
