C++ 中的音频录制
我想知道,在 C++ 中进行音频录制/播放/查找的一个好的跨平台实用程序是什么?我正在考虑走ALUT(OpenAL)的路线,但是有更好的方法吗?如果没有,你们知道 ALUT 有什么好的教程/示例代码吗?
I was wondering, what was a good cross-platform utility for doing audio recording/ playback/ seeking in C++? I was thinking going the route of ALUT (OpenAL), but is there a better way? If not, do you guys know of any good tutorials/sample code for ALUT?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SFML 和 SDL 支持播放多种不同的声音格式并且是跨平台的。它们都没有为您提供录制音频的方法。然后还有 PortAudio ,它看起来很活跃,但我根本没有使用它的经验。
SFML and SDL have support for playing many different sound formats and are cross plattform. Neither of them provides you with means for recording audio. Then there is PortAudio which looks pretty active but I do have no experience with it at all.
Qt实际上从4.6版本开始就有了一些音频功能。
我自己没有尝试输入,但是如果您在 Qt-Documentation< 中向下滚动一点/a>
有一个基本的例子。
对于输入,您可以使用 Qt 进行更高的工作。这是一个示例。
Qt actually has some audio functions since version 4.6.
Didn't try the input for myself, but if you scroll down a bit in the Qt-Documentation
there is a basic example.
For Input you can work a layer higher with Qt. Here is an example.