Posted by Wim Koorenneef on 2007-08-09 23:54 CEST
Today I found a mp3 player that I didn't use in quite a while. It has the best sound I've ever experienced with such a small player. Far better than my Ipod I can tell you. And it even plays ogg files.
Anyway, I needed to refresh the content so I installed ifpgui.
sudo apt-get install ifpgui
Posted by Wim Koorenneef on 2006-11-17 20:17 CET
My phone plays video's so I decided to convert an old Will & Grace episode from a PAL resolution AVI to a 320x240 MP4 with ffmpeg. Here's the command:
ffmpeg -i will_and_grace.avi -f mp4 -vcodec mpeg4 -maxrate 1000 -b 700 -qmin 3 -qmax 5 -bufsize 4096 -g 300 -acodec aac -ab 128 -s 320x240 -aspect 4:3 out.mp4
I had to compile a new ffmpeg though as the ffmpeg that comes with Ubuntu doesn't support mp3 or aac encoding. Here's the configure command: