Ever tried to transcode into H.264 using ffmpeg in Debian Lenny just to end up with this message
Unknown encoder ‘libx264′
Here is how you solve the problem:
- Download the debian-multimedia-keyring package
- Install it
dpkg -i debian-multimedia-keyring_2008.10.16_all.deb - Add the Debian Multimedia repository to your sources.list
- Run
apt-get updateandapt-get upgrade - Install the libx264 and ffmpeg packages;
apt-get install libx264 ffmpegorapt-get --reinstall install libx264 ffmpeg
Good luck!