I'm looking for a C++ library (for Linux, but preferably cross-platform) that will easily let me read audio files in some trivial format such as a raw byte stream, generate audio data in the same trivial format, and write audio files. I don't care what format the reading and writing happens in, as long as it's free (beer and speech) and commonly supported. I'm going to be reading, transforming, and generating many small audio clips in a very parallel program, so I need the library to be fast and thread-safe.

Additional features I'd like, but do not require, are simple DSP functions (FFT, filters), and recording/playback through the sound card.

A bit of Googling didn't turn anything up, but perhaps I'm using the wrong search terms. I've almost exclusively found libraries for use in apps that record or playback, and it's unclear if they have the ability to generate sound from raw bytes, and even if they do they seem like overkill for my purpose. I've been considering just writing my own library to manipulate WAV files, since they seem simple enough, but I'd rather not reinvent the wheel if I can avoid it.

link|improve this question

75% accept rate
2  
I know you said you want C++ for speed, but I would recommend prototyping with octave and then porting to C++ for speed gnu.org/software/octave/doc/interpreter/Audio-Processing.html. For C++ you could use PortAudio portaudio.com/docs.html – TJD Jan 26 at 1:24
free for non-commercial use? – Samaursa Jan 26 at 2:28
@TJD: most of the heavy processing is going to be done with a genetic algorithm, so there isn't much prototyping to do, and also I don't think octave is well suited to that task. – rmeador Jan 26 at 4:09
@Samaursa: I haven't yet decided if this will be commercial or open source or just a hobby project... it probably depends on how successful it is. A free for all uses license would be best. – rmeador Jan 26 at 4:13
feedback

4 Answers

GStreamer is cross-platform and widely used:

GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing.

link|improve this answer
feedback

I may be completely off here, but from your description it sounds like you are looking for something like OpenAL or FMOD. OpenAL is completely free, but FMOD is free for non-commercial use only. Both are thread-safe and are cross-platform.

As you can guess, getting started with OpenAL is much harder than FMOD due to lack of (good) documentation and proper examples.

link|improve this answer
feedback

How about SDL and SDL_Mixer? No DSP functionality though.

link|improve this answer
feedback

File R/W: http://www.mega-nerd.com/libsndfile/

FFT: http://www.fftw.org/

Hardware Interfacing: http://jackaudio.org/

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.