通过 ASP.NET 页面进行音频对话!
如何创建一个 ASP.NET
页面,允许用户通过音频语音
进行通信。
我必须做什么才能完成这项工作。
谢谢。
How can I create an ASP.NET
page, that allows users to communicate with audio voice
.
What must I do to accomplish this job.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅使用 ASP.NET?我不确定如果没有某种浏览器插件,您是否可以做到这一点。我怀疑利用 Flash Player 进行呼叫可能会更有利。您仍然需要一个通信服务器来进行管道连接。请查看 Red5(开源)、FlashMediaServer(Adobe 的产品),Wowza 媒体服务器(比 FMS 便宜)。
Using ASP.NET only? I'm not sure you can do this without some sort of browser plugin. I suspect that it might be advantageous to leverage the Flash Player to make the call. You'd still need a communication server to do the plumbing. Check out Red5 (Open Source), FlashMediaServer (Adobe's product), Wowza Media Server (cheaper than FMS).
消费者的回答是正确的。当前版本的 HTML 和提议的 HTML5 均不提供对音频拾取的任何支持。此外,音频播放功能不足以提供您所需的音频流控制。查看各种可用的插件技术,或者编写您自己的浏览器特定、操作特定的插件。
如果您打算瞄准不支持插件的设备,例如 iPad 和 iPhone,那么您将被迫为这些平台构建本机应用程序。
spender's answer is correct. Current versions of HTML nor the proposed HTML5 provide any support for audio pick up. Additionally, the audio playback features are insufficient to provide the kind of audio streaming controls that you will need. Look at the variety of plug-in technologies available or write your own browser specific, operating specific plug in.
If you are going to target devices such as the iPad and iPhone that won't support plug-ins, you are going to be forced to build native applications for those platforms.