Sound capture in CPP and Qt

I would like to record some microphone sound in cpp to use it in a Qt application.

So I'm looking for a multi-platform library that integrates seamlessly into a Qt4 project.

+6
c ++ qt capture audio
source share
2 answers

OpenAL is a good, cross-platform C ++ library for capturing audio.

+3
source share

Qt 4.6 introduces the new, low-level set of audio APIs in the QtMultimedia module. You can use QAudioInput to capture raw sound from a microphone.

This API is currently implemented for Windows, Mac, and Linux (supporting PULSE and ALSA audio systems). Support is currently being developed for other platforms, including Symbian in the mobile space.

+7
source share

All Articles