在 Flex 中显示麦克风活动
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于没有人回应,我将回答我最终是如何做到的。
我使用图像和麦克风的 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
是的,重点是,你需要使用麦克风。
要么使用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)