Node.js 视频聊天应用
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/13377884/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Node.js video chat application
提问by Pinky
How would you implement a video chat application using node.js?
您将如何使用 node.js 实现视频聊天应用程序?
Any resources(tutorials, books, links) or a general gameplan/strategy would be greatly appreciated
任何资源(教程、书籍、链接)或一般游戏计划/策略将不胜感激
回答by Ash Blue
Right now there are two Node.js projects for video chat. Both are experimental, but I've heard they work quite well if you can get them running.
现在有两个用于视频聊天的 Node.js 项目。两者都是实验性的,但我听说如果您可以让它们运行,它们会工作得很好。
https://github.com/webRTC/webrtc.io-client=> The current champ for chat.
https://github.com/webRTC/webrtc.io-client=> 当前聊天冠军。
https://github.com/kdomagal/Web-RTC=> Only a demo app
https://github.com/kdomgal/Web-RTC=> 只有一个演示应用程序
回答by Joseph Adams
There is a Project that aims at these sorts of problems (http://www.webrtc.org/). I would probably stream the video to the server and then to the client, or wait til the P2P API is ready and then implement a P2P version if you have time to wait.
有一个针对此类问题的项目 (http://www.webrtc.org/)。我可能会将视频流传输到服务器,然后传输到客户端,或者等到 P2P API 准备就绪,如果您有时间等待,然后实现 P2P 版本。

