Reputation: 11
I am trying to implement a live streaming application using flutter. For that, I need to implement a webRTC server with NodeJS. Is there a way to implement a webrtc server for one to many server with node JS?
Upvotes: 1
Views: 3733
Reputation: 57
Check out Mediasoup. It's a WebRTC server implemented in NodeJS. You can install it just like any npm package and use along with rest of your implementation.
Upvotes: 1