在 Flex 中显示麦克风活动

发布于 2024-08-30 12:41:25 字数 102 浏览 4 评论 0原文

我想在 Flex 中显示麦克风的实时活动栏。这类似于显示 Flash 设置对话框的麦克风设置选项卡时可以看到的垂直条。

任何内置组件或链接都会有所帮助。

谢谢

I want to display a real time activity bar for the microphone in flex. This is similar to the vertical bar one can see when flash settings dialog's microphone settings tab is displayed.

Any built in component or link would help.

Thanks

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

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

发布评论

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

评论(2

风吹雪碎 2024-09-06 12:41:25

由于没有人回应,我将回答我最终是如何做到的。
我使用图像和麦克风的 ActivityLevel 属性来显示麦克风的实时声音输入。由于此 ActivityLevel 不可绑定,我必须使用计时器。

之外,还要记住获取activityLevel的有效值。

除了调用mic = Microphone.getMicrophone();

还可以使用

mickey.setLoopBack(true);

麦克风.setUseEchoSuppression(true);

否则,activityLevel 值为 -1
第二点在flex文档中没有提到

Since no one ever responded I will answer this as to how I eventually did it.
I used an image and the microphone's activityLevel attribute to show the the real time sound input to the microphone. Since this activityLevel is not bindable I had to use a timer.

Also do remember to get a valid value of activityLevel apart from calling

microphone = Microphone.getMicrophone();

also use

microphone.setLoopBack(true);

microphone.setUseEchoSuppression(true);

Otherwise the activityLevel value is -1
The second point is not mentioned in flex docs

时光磨忆 2024-09-06 12:41:25

是的,重点是,你需要使用麦克风。
要么使用mic.setLoopBack(true);或 netstream.attachAudio(麦克风)

yes, the point is, that you need to use the microphone.
either with microphone.setLoopBack(true); or netstream.attachAudio(microphone)

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