Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Node.js video chat application [closed]

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

like image 585
Pinky Avatar asked Nov 14 '12 11:11

Pinky


2 Answers

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

like image 113
Ash Blue Avatar answered Sep 22 '22 12:09

Ash Blue


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.

like image 20
Joseph Adams Avatar answered Sep 26 '22 12:09

Joseph Adams