How would you implement a video chat application using node.js?
Any resources(tutorials, books, links) or a general gameplan/strategy would be greatly appreciated
How would you implement a video chat application using node.js?
Any resources(tutorials, books, links) or a general gameplan/strategy would be greatly appreciated
现在有两个用于视频聊天的 Node.js 项目。两者都是实验性的,但我听说如果你能让它们运行,它们会很好地工作。
https://github.com/webRTC/webrtc.io-client => 当前的聊天冠军。
https://github.com/kdomagal/Web-RTC => 只有一个演示应用
有一个针对这类问题的项目 (http://www.webrtc.org/)。我可能会将视频流式传输到服务器,然后再传输到客户端,或者等到 P2P API 准备好,如果您有时间等待,然后再实施 P2P 版本。