在音频管理器中使用流式音频记录

发布于 2024-11-09 10:37:21 字数 185 浏览 7 评论 0原文

我正在尝试使用“audiomanager”中的“getStreamVolume”确定当前通过麦克风馈送的音量级别。

Audiomanager 文档中列出的唯一可用源流是闹钟、DTMF、音乐、通知、电话铃声、系统声音和电话。我不确定如何通过音频管理器路由麦克风以获得当前的馈送音量。

任何指导将不胜感激

谢谢

I'm trying to determine the volume level of what is currently being fed through the microphone with 'getStreamVolume' in 'audiomanager'.

THe only available source streams listed in the documentation for audiomanager is for alarms, DTMF, music, notifications, phone ringing, system sounds and phone calls. I'm not sure how to route the microphone through audiomanager in order to get the current volume of the feed.

Any guidance will be most appreciated

Thanks

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

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

发布评论

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

评论(1

深府石板幽径 2024-11-16 10:37:21

AudioManagergetStreamVolume() 返回音量设置,而不是实际音量。

相反,您需要从流中读取值,在相对较短的时间内获取平均值,然后使用该值。

根据 AudioRecord 的文档,此处 ,使用 read(byte[], int, int)read(short[], int, int)read(ByteBuffer, int) >。

getStreamVolume() of AudioManager returns a volume setting, not the actual volume.

Instead, you need to read the values from the stream, obtain an average over a relatively short space of time, and use that value.

As per the documentation for AudioRecord, here, Use read(byte[], int, int), read(short[], int, int) or read(ByteBuffer, int).

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