使用Qt进行音频流录制和播放

发布于 2024-10-16 12:22:42 字数 308 浏览 4 评论 0原文

我正在尝试使用 Qt 开发一个多媒体程序,该程序从麦克风获取音频输入流(使用 QAudioInput),然后将采样的字节存储在内存中 60 毫秒,然后播放它(使用 >QAudioOutput)。

QAudioOuput文档有一个示例可以完成大部分工作,但它使用文件作为数据源。我如何修改它以使用输入流?

I am trying to develop a multimedia program using Qt which gets an audio input stream from a microphone (using QAudioInput), then stores the sampled bytes in memory for 60 milliseconds, then play it back (using QAudioOutput).

The documentation for QAudioOuput has an example which does most of this, but it uses a file as its data source instead. How can I modify this to use an input stream instead?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贵在坚持 2024-10-23 12:22:43

QAudioInput::start()QAudioOutput::start() 都采用指向 QIODevice 作为参数。这可能是指向 QFile 的指针(如示例中所示)或者 QBuffer 如果你想将数据保留在内存中。

QAudioInput::start() and QAudioOutput::start() both take a pointer to a QIODevice as a parameter. This could be pointer to a QFile (like in the example) or a QBuffer if you want to keep the data in the memory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文