07:59 pm, 26 Jan 06
youtube download / ubuntu breezy ffmpeg mpeg4 support
To convert from the Flash video format found on sites like YouTube (fetch
Unfortunately, Ubuntu Breezy doesn't have the mpeg4 support compiled into ffmpeg. But it's really easy to do, and the lesson applies more generally. From the comments on this post:
[PS: most jargon-laden subject ever!]
/get_video?video_id=...
to get it), you can use ffmpeg like this:ffmpeg input.flv -vcodec mpeg4 -acodec mp3 output.avi
Unfortunately, Ubuntu Breezy doesn't have the mpeg4 support compiled into ffmpeg. But it's really easy to do, and the lesson applies more generally. From the comments on this post:
sudo apt-get build-dep ffmpeg
sudo apt-get install liblame-dev libfaad2-dev libfaac-dev libxvidcore4-dev checkinstall fakeroot
DEB_BUILD_OPTIONS=risky fakeroot apt-get source ffmpeg --compile
sudo dpkg -i *.deb
[PS: most jargon-laden subject ever!]
"You'd think we're Aaron Burr the way we're droppin' Hamiltons!"
Thanks!