slashmais
slashmais

Reputation: 7155

Cross-platform C/C++ libraries with examples for raw audio record and playback

I'm developing a note-taking utility and want to add a feature for voice-recording and playback in full duplex asynchronous mode.
What cross-platform c/c++ libraries/API's can I evaluate for my purpose? Google isn't much help in this case and the existing QA's on SO doesn't quite cover this.

Upvotes: 3

Views: 2324

Answers (2)

elSnape
elSnape

Reputation: 302

Take a look at JUCE. Has lots of audio helpers and numerous other utilities that make for fast development.

Upvotes: 3

cyco130
cyco130

Reputation: 4934

PortAudio can accomplish what you want. It has lots of backends for different technologies like ALSA, ASIO, DirectSound etc.

Upvotes: 3

Related Questions