CPP 和 Qt 中的声音捕获
我想在 cpp 中从麦克风捕获一些声音,以便在 Qt 应用程序中使用它。
所以我正在寻找一个可以轻松集成到 Qt4 项目中的多平台库。
I would like to capture some sound from the microphone in cpp, in order to use it in a Qt application.
So I'm looking for a multi platform library easily integrable in a Qt4 project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Qt 4.6 在 QtMultimedia 中引入了一套新的低级音频 API 套件模块。您可以使用 QAudioInput 从麦克风捕获原始音频。
目前,该 API 针对 Windows、Mac 和 Linux 实现(支持 PULSE 和 ALSA 音频子系统)。目前正在开发对其他平台的支持,包括移动领域的 Symbian。
Qt 4.6 introduces a new, low level suite of audio APIs in the QtMultimedia module. You can use QAudioInput to capture raw audio from a microphone.
At present, this API is implemented for Windows, Mac, and Linux (supporting PULSE and ALSA audio subsystems). Support for other platforms, including Symbian in the mobile space, is currently under development.
OpenAL 是一个很好的跨平台 C++ 库,用于捕获音频。
OpenAL is a good, cross-platform C++ library for capturing audio.