I'm trying to install ffmpeg on my dedicated server running on ubuntu 10.04. I want to convert flv-videos to mp3 sound files. As I found out, I have to install libavcodec-extra-52. When I use
sudo apt-get install libavcodec-extra-52
it says that I don't have libfaac0 (>= 1.26) and libmp3lame0 and that they aren't installable. Using
sudo apt-get install libmp3lame0
it says that the package isn't available at any source. Do I need some special repository to be able to download those codecs? Right at the moment, I have only three sources for packages in /etc/apt/sources.list which are predefined and hosted by my provider.
Thanks in advance.
sudo apt-get update && apt-cache search libavcodec-extrawhat is the result of this command? Also try this combo to try to fix some apt issuessudo apt-get update --fix-missing && sudo apt-get upgrade -y && sudo apt-get install -f– user827992 Jul 23 '12 at 16:08winff - graphical video and audio batch converter using ffmpeg libavcodec-extra-52 - ffmpeg codec library. The second command repaired many packages, but didn't change anything. – Michael Jul 23 '12 at 16:22