Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I edited /etc/apt/source.list to have restricted and partner repository, but the results always:

sudo apt-get install libfaac-dev ....
....
E: Unable to locate package libfaac-dev

The package is used by audio codecs, and ffmpeg uses it.

share|improve this question
On my Ubuntu desktop 11.04 Natty it will install without any trouble. Try change the source server maybe? – lllluuukke Aug 29 '12 at 2:07

migrated from stackoverflow.com Aug 29 '12 at 11:03

1 Answer

libfaac-dev is in multiverse repository. So, you need to edit /etc/apt/sources.list to include multiverse repository as well.

After you change it, run the following command to install libfaac-dev:

sudo apt-get update && sudo apt-get install libfaac-dev
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.