AS3 和麦克风类

发布于 2024-11-19 04:29:04 字数 211 浏览 2 评论 0原文

在 Java 中,AudioFormat 有一个名为

getSampleRate

This 返回每秒样本数的方法。

我想知道使用闪光灯中的麦克风实现此目的的最佳方法是什么。我不确定是否需要添加 SamplesDatatEvent 并使用 extract() 或 ??

我需要知道进入麦克风的音频每秒的样本数。

In Java there is a method of the AudioFormat called

getSampleRate

This returns the number of samples per second.

I was wondering what the best way to achieve this with the microphone in flash is. I am not sure if I need to add a SamplesDatatEvent and use extract() or ??

I need to know the number of samples per second from the audio coming into the mic.

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

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

发布评论

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

评论(1

青衫负雪 2024-11-26 04:29:04

Microphone 类有一个“速率”获取器/设置器:
http://help.adobe.com /en_US/FlashPlatform/reference/actionscript/3/flash/media/Microphone.html#rate

似乎默认为 8kHz 或 11kHz,最高可设置为 44kHz(44.1、我认为)。

您可以添加“SampleDataEvent”侦听器来访问字节。

The Microphone class has a 'rate' getter/setter:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/Microphone.html#rate

Seems to default to either 8kHz or 11kHz, settable up to 44kHz (44.1, I assume).

You can add a 'SampleDataEvent' listener to get access to the bytes.

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