问题
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
回答1:
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.
https://github.com/webRTC/webrtc.io-client => The current champ for chat.
https://github.com/kdomagal/Web-RTC => Only a demo app
回答2:
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.
来源:https://stackoverflow.com/questions/13377884/node-js-video-chat-application