在 iOS、AVAudioRecorder 或其他设备上监听麦克风输入?

发布于 2024-10-09 07:18:19 字数 110 浏览 2 评论 0原文

我想知道是否有一种方法可以在不录音的情况下“听”并显示麦克风的输入电平?

苹果的 SpeakHere 示例负责录制和播放,我想知道是否可以有一个更简单的版本,只“听”而不实际录制和保存文件。

I'm wondering if there is a way to "listen" without recording and display the microphone's input levels?

Apples SpeakHere sample does the record and playback, and am wondering if there could a be a lighter version of just "listening" without actually recording and saving a file.

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

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

发布评论

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

评论(1

超可爱的懒熊 2024-10-16 07:18:20

我使用 AudioQueues 来实现此目的。在回调中,像这样获取输入级别:

AudioQueueLevelMeterState meter[NUM_INPUT_CHANNELS];
UInt32 dataSize = sizeof(meter);
AudioQueueGetProperty(aqInput, kAudioQueueProperty_CurrentLevelMeterDB, meter, &dataSize);
// input 'level' is in meter.mAveragePower

并且不要将音频写入文件。

I use AudioQueues for this purpose. In your callback, get the input level like so:

AudioQueueLevelMeterState meter[NUM_INPUT_CHANNELS];
UInt32 dataSize = sizeof(meter);
AudioQueueGetProperty(aqInput, kAudioQueueProperty_CurrentLevelMeterDB, meter, &dataSize);
// input 'level' is in meter.mAveragePower

And simply don't write the audio into a file.

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