up vote 3 down vote favorite
3
share [g+] share [fb]

For an application I'm creating, I need to be able to read AAC and MP3 files and get the waveform data (not play it directly, I need to manipulate the data before playing). Ideally, I should be able to read any MP3/AAC file out there (VBR, different bitrates, etc), or at least anything that could potentially show up in iTunes.

This last point is very important, as Chuck commented. I assumed iTunes would be MP3s, I didn't know they used AAC. In essence, I must be able to read anything that is in iTunes.

What approach do you recommend me to use?
What kind of libraries are out there?

This is for a commercial application that will run on Windows, written in C# 3.0. I can use Open Source libraries, but nothing with a license that will make me release my source code later.

Any pointers are greatly appreciated!

link|improve this question

I hope you realize that a good chunk of iTunes music is AAC rather than MP3. – Chuck Feb 10 '09 at 23:51
Oops! Thanks for that clarification! – Daniel Magliola Feb 11 '09 at 0:02
One further caveat: Until recently, all songs bought from the iTunes Store were encrypted Apple-proprietary DRM. Nothing except QuickTime and the DMCA-violating JHymn can decode those (and I'm not 100% positive about the Windows version of QuickTime). – Chuck Feb 11 '09 at 0:12
Hmmmmmmmm, and i'm guessing there is no "export to MP3" feature in iTunes, right? (or in another software, but something that's not illegal) – Daniel Magliola Feb 11 '09 at 0:16
For the DRM-protected files, the only legal way to remove the FairPlay protection (besides paying a 30¢-per-track upgrade fee) is to burn the tracks to CD and reimport them as MP3. – Chuck Feb 11 '09 at 0:24
show 3 more comments
feedback

1 Answer

up vote 3 down vote accepted

Take a look at mpg123 which is LGPL licenced.

There's also MAD, which is GPL but a commercial license can be negotiated.

For AAC there's FAAD2, but it is GPL. Not sure if other terms are available. Another source of enquiry might be checking the sources and licences used in this list of AAC software on wikipedia.

link|improve this answer
Thank you, i'll look into this! – Daniel Magliola Feb 12 '09 at 3:39
feedback

Your Answer

 
or
required, but never shown

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