WebRTC Relay Server / Broadcast multiple clients

webrtc

I've got WebRTC peer to peer working but when I want to broadcast a single camera to multiple clients obviously peer to peer isn't suitable.

I've found solutions like

But the first I can't get setup (and it seems to have cross browser issues)
the second just feels like we're hitting a nail with a nuclear missile.

All I need is a relay, I don't need to decode / recode streams.

I just need

  • The Broadcaster to connect to the server (peer to peer)

  • The clients to connect to the server (peer to peer)

  • The server to relay the stream from the broadcaster to the clients.

Is there any software out there that offers this solution that I've missed? is there an alternative working and scalable alternative?

Thanks

Best Answer

Jitsi Video Bridge works pretty much exactly how you describe.

Related Topic