flpvsk / webrtc-study-broadcaster

A minimal implementation of video broadcasting over WebRTC
4 stars 1 forks source link

WebRTC study: remote camera / screen

A minimal setup for transmitting / receiving video signal using WebRTC.

Requirements

Running the example locally

npm i
npm start

# open these urls in your browser
open http://localhost:3000/camera.html
open http://localhost:3000/screen.html

Running the example over the network

npm i
npm start

# in a separate terminal / tab
ngrok http 3000

# open on different devices
open https://${NGROK_URL}/camera.html
open https://${NGROK_URL}/screen.html

What's included

Acknowledgements