Is there anything more out there, that resembles (in spirit), to OpenCV, but for processing audio and deriving some intelligence from it ? Capabilities could range from:-

  1. Multiplatform audio capture and audio playback
  2. DSP - Audio filters
  3. Tone detection
  4. Tonal property analysis
  5. Tone synthesis (various standard waveforms)
  6. Recognition given some recognition corpus and model (e.g. determine musical instruments, beats, human speech etc.) -- could potentially use other open-source projects for the actual recognition part (sphinx)
  7. Speech / music synthesis -- could be again using some other open-source projects (festival)

It is fine if the library works on raw audio s.t. format/encoding conversion are external issues handled by other existing libraries (s.a. from ffmpeg).

I am not an expert in this field, but need to use such API, and wondering if such libraries exist, so my choice of terms to determine capabilities is probably not the best, so experts might like to edit this question.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

For audio capture and playback, portaudio comes to my mind.

For audio processing, STK looks promising.

Have a look at this related question too: Can anyone recommend a decent DSP/speech library in C++?

link|improve this answer
+1 for answering. STK seems to be mostly music synthesis library, but I may be wrong, as I've not spent enough time with it. – icarus74 Aug 5 '11 at 18:04
Also found libsox. Apart from that gstreamer, especially with ladspa plugins have extensive capabilities. However, there doesn't seem to be anything "all under same roof", like OpenCV. – icarus74 Sep 8 '11 at 11:17
feedback

Your Answer

 
or
required, but never shown

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