I'm looking for a good, open-source (preferably GPL, BSD or public domain), lightweight, cross-platform (at least Windows and any POSIX-compliant system) C library for MP3 decoding. It doesn't need to be able to play anything, or encode anything, but just decoding it to raw audio data is fine. Can anyone recommend one? Thanks. :)

link|improve this question

73% accept rate
It would be good to know more detail about what you want to do. Do you intend to play the audio, or process it somehow? – Justin Morgan Feb 8 '11 at 17:29
@Justin Morgan I'm going to play the audio. I prefer a decoding library over a playing library because my application uses one library to play raw audio data. My application also accepts pipes so a playing library for each codec is overkill. – WTP'-- Feb 8 '11 at 17:32
Any reason why you couldn't use one library to play all audio, including decoding and playing MP3s? – Justin Morgan Feb 8 '11 at 17:33
Just worth noting - MP3 is a patented and licensed technology. All the FOSS implementations (even clean room ones) could be in violation - doesn't really matter unless your end user complains! – Martin Beckett Feb 8 '11 at 18:00
feedback

3 Answers

FFMPEG !

link|improve this answer
feedback

Madplay and I think you deserve an explanation why!

  • It's GPL
  • It's very easy to integrate
  • It's fast (it's not as hyper-optimized as some, but it's good)
  • It's portable
  • There are ARM and x86 specific optimizations (asm)
  • I've used it successfully in many projects. Tried, tested and trusted.
link|improve this answer
feedback

LAME

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.