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.
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.
|
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/ | ||||
|
feedback
|
| ||||
|
feedback
|