vote up 3 vote down star
2

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!

flag

69% accept rate
I hope you realize that a good chunk of iTunes music is AAC rather than MP3. – Chuck Feb 10 at 23:51
Oops! Thanks for that clarification! – Daniel Magliola Feb 11 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 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 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 at 0:24
show 3 more comments

2 Answers

vote up 3 vote down

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|flag
Thank you, i'll look into this! – Daniel Magliola Feb 12 at 3:39
vote up 0 vote down

hi did you work it out ?= playing AAC whit c#

link|flag

Your Answer

Get an OpenID
or

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