Flash 或 Java 中的开源 p2p 视频会议?
我想建立一个集成视频会议功能的社区网站。我更愿意在浏览器中提供此功能,因此我正在寻找基于 Java 或 Flash 的解决方案。
此外,让客户端在不使用中央服务器的情况下流式传输音频和视频数据(例如 Skype 的工作方式),这样可以节省带宽。
是否有一个相当成熟的开源项目能够满足这些标准?
I want to build a community website with videoconferencing functionality integrated. I would prefer to provide this from within the browser, so I'm looking for a Java- or Flash-based solution.
Also, it would be nice to spare bandwidth by having the clients stream their audio and video data without using a central server (like the way Skype works, for example).
Is there a reasonably mature open-source project that meets these criteria?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在进行 IP 语音时,首选 UDP,而 Web 浏览器插件通常缺乏对 UDP 和 P2P 连接的支持。
但有一个解决方案。为此,您必须使用 Adobe Flash Player 10 和 Adobe Stratus。这实际上是 Chatroulette 用于 P2P 流视频聊天的方式。
When doing Voice over IP, UDP is preferred, and web browser plugins usually lacks support for UDP and P2P-connections.
But there is a solution. You have to use Adobe Flash Player 10 and the Adobe Stratus for this. This is actually what Chatroulette is using for P2P streamed video chat.
听听一个历经千辛万苦才发现的人的话:Java 对视频播放的支持实在是太糟糕了。他们不断承诺推出新的、出色的视频播放系统,但与此同时,我们仍然受制于 Java Media Framework,这是一个平台受限、MPEG-4 不兼容的混乱局面。
您的替代方案是 Quicktime for Java 和包装 MPlayer/VLC/ 等的系统。这些都不是浏览器的真正选择。
尽管我讨厌 Adobe 和 Flash 网站设计的弊端,但 Flash 无疑是您的最佳选择。
Take it from someone who found out the hard way: Java's support for video playback is pisspoor. They keep promising a new, fantastic video playback system, but meanwhile we are STILL stuck with Java Media Framework, the platform-limited, MPEG-4 incompatible mess.
Your alternatives are Quicktime for Java and systems wrapping MPlayer/VLC/etc. None of those are really options for a browser.
Much as I hate Adobe and the evils of Flash site design, Flash is far and away your best option.
请参阅 Xuggler 库 - 它包含用于在 com 中播放视频的代码(示例代码) .xuggle.mediatool.IMediaVieer 对象。
See the Xuggler library -- it includes code for playing back video (well, sample code) in the com.xuggle.mediatool.IMediaVieer object.