Reputation: 81
I just want to know to get webrtc media stream to the node js server and serves it to the clients connected to that server.
I already created P2P WebRTC application with node js signalling server and it works fine. But now wants to route the media stream through the server. It should have low latency and delay to make it work at live server.
Upvotes: 1
Views: 933
Reputation: 1469
What you need is a SFU (Selective Forwarding Unit). Like these
Here is a github project where it is implemented using mediasoup.
Upvotes: 1