Marnix Bouhuis
Marnix Bouhuis

Reputation: 450

WebRTC live video stream node.js

I am searching for a way to stream video with webRTC. I am very new to webRTC. I have seen a lot of applications on the web that have p2p video chat. The tutorials I follow explain how WebRTC working for the client, but they do not show what use a backend script. And that's exactly what I'm looking for, a backend script (preferably node.js) that ensures that I can stream live video (getUsersMedia) to the client.

Upvotes: 6

Views: 15523

Answers (1)

Sasi Varunan
Sasi Varunan

Reputation: 2864

Its really simple to get started, checkout a simple demo here

1.You need a WebRTC supported browser. Chrome and firefox are best at now

  1. A signalling server to exchange a media options. SocketIO with Nodejs

  2. TURN and STUN server to solve NAT and Symmetric NAT (Only if you public)

  3. MCU, if you want to limit the bandwidth usage. It give flexibility to a star network rather than mesh network in normal p2p

Upvotes: 10

Related Questions