I'm getting into programming for audio and sound and I thought a list of open-source libraries that add audio related functionality would be nice to have, even as a learning resource for us newbies to know what is there and what can be done with audio. So if you know of a library (preferably open source), please add it here. Basically anything that could be useful in audio applications.

link|improve this question
1  
Many similar questions already posted on SO – Robert Harvey Dec 9 '10 at 22:34
1  
No particular platform? – Matt Ball Dec 9 '10 at 22:34
@Robert Harvey, Would be very handy to have them all in one place though. +10 for the question. – samquo Dec 9 '10 at 22:41
No particular language? There are plenty of portable libraries that target one particular language - though there are often ways to access them from other languages too. – Steve314 Dec 9 '10 at 22:48
@steve, No, I don't have a language preference, because it's an open source project so I can port a library to another language if the need be. It's a lot of painful work I know, but since this is open source, it makes sense to not exclude any language. – silow Dec 9 '10 at 22:54
feedback

closed as not a real question by Matt Ball, Robert Harvey, Paul R, Michael Petrotta, bmargulies Dec 11 '10 at 1:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 2 down vote accepted

If you want something low-level and minimalist, there's the audio component of SDL. Basically you fill in a block of audio data at a time, at SDLs demand when it calls your callback function. File support is limited to WAV (and probably uncompressed WAV only, though I'm not certain about that).

In other words, SDL just passes the data on to the hardware through platform-specific APIs such as (on Windows) DirectX. Other than that, you have nearly total flexibility to do what you want - but also total responsibility for implementing it yourself.

There are extension libraries such as SDL_Mixer for higher level stuff.

Portaudio is another portable audio library (without the extra non-audio stuff) - http://www.portaudio.com/

Libsndfile is a portable library for reading and writing audio files - http://www.mega-nerd.com/libsndfile/

link|improve this answer
feedback

NAudio

NAudio is an open source .NET audio and MIDI library, containing dozens of useful audio related classes intended to speed development of audio related utilities in .NET. It has been in development since 2001 and has grown to include a wide variety of features. While some parts of the library are relatively new and incomplete, the more mature features have undergone extensive testing and can be quickly used to add audio capabilities to an existing .NET application.

link|improve this answer
feedback

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