The demo is nice and clean. How does this compare to Kurento, or Janus? Edit : I see Kurento is now assumed dead thanks to Twilio buying them, and I understand Janus doesn't provide any client libraries.
mediasoup (in server side) is a Node.js library or a NPM dependency that you integrate into your Node.js app. Of course it comes with tons of C++ lines but, from the point of view of the user, it's just yet another NPM dependency into your Node.js project. mediasoup overview here: https://mediasoup.org/documentation/overview/
Mediasoup – WebRTC video conferencing
11–20 of 49 posts
Re: Mediasoup – WebRTC video conferencing
#12Earlier quoted context omitted.
What advantages would this offer over jitsi meet?
Jitsi is a full application (web app, backend servers) with a specific use case: meetings (similar to Zoom or Google Meet). mediasouop is not an application but a set of server and client low level libraries to build whichever kind of audio/video applications (not just meetings). You don't "install mediasoup and configure it". You create your Node app and integrate mediasoup as you do with any other NPM dependency. S…
Is live streaming a use-case that's under scope? If so, can the client P2P or requires a relay server for all traffic?
Re: Mediasoup – WebRTC video conferencing
#13Earlier quoted context omitted.
mediasoup (in server side) is a Node.js library or a NPM dependency that you integrate into your Node.js app. Of course it comes with tons of C++ lines but, from the point of view of the user, it's just yet another NPM dependency into your Node.js project. mediasoup overview here: https://mediasoup.org/documentation/overview/
So no documented c++ library to bind other languages through? server side needs to be node.js?
Re: Mediasoup – WebRTC video conferencing
#14Earlier quoted context omitted.
Jitsi is a full application (web app, backend servers) with a specific use case: meetings (similar to Zoom or Google Meet). mediasouop is not an application but a set of server and client low level libraries to build whichever kind of audio/video applications (not just meetings). You don't "install mediasoup and configure it". You create your Node app and integrate mediasoup as you do with any other NPM dependency. S…
> ...build whichever kind of audio/video applications... Is live streaming a use-case that's under scope? If so, can the client P2P or requires a relay server for all traffic?
Re: Mediasoup – WebRTC video conferencing
#15Earlier quoted context omitted.
mediasoup (in server side) is a Node.js library or a NPM dependency that you integrate into your Node.js app. Of course it comes with tons of C++ lines but, from the point of view of the user, it's just yet another NPM dependency into your Node.js project. mediasoup overview here: https://mediasoup.org/documentation/overview/
So no documented c++ library to bind other languages through? server side needs to be node.js?
Re: Mediasoup – WebRTC video conferencing
#16Earlier quoted context omitted.
Jitsi is a full application (web app, backend servers) with a specific use case: meetings (similar to Zoom or Google Meet). mediasouop is not an application but a set of server and client low level libraries to build whichever kind of audio/video applications (not just meetings). You don't "install mediasoup and configure it". You create your Node app and integrate mediasoup as you do with any other NPM dependency. S…
> ...build whichever kind of audio/video applications... Is live streaming a use-case that's under scope? If so, can the client P2P or requires a relay server for all traffic?
Re: Mediasoup – WebRTC video conferencing
#17Re: Mediasoup – WebRTC video conferencing
#18The demo is nice and clean. How does this compare to Kurento, or Janus? Edit : I see Kurento is now assumed dead thanks to Twilio buying them, and I understand Janus doesn't provide any client libraries.
Re: Mediasoup – WebRTC video conferencing
#19The demo is nice and clean. How does this compare to Kurento, or Janus? Edit : I see Kurento is now assumed dead thanks to Twilio buying them, and I understand Janus doesn't provide any client libraries.
Disclaimer: I'm OpenVidu project lead.
Re: Mediasoup – WebRTC video conferencing
#20Earlier quoted context omitted.
What advantages would this offer over jitsi meet?
Jitsi meet is a conferencing app. You likely mean jitsi videobridge. That's the SFU part and comparable to mediasoup. Mediasoup has a bit more modern codebase and offers a rather low-level framework to build your own SFU. Whereas Jitsi videobridge is more of a ready-to-go SFU, but less flexible. Mediasoup has very good node bindings, which may or may not be an advantage to you. They offer similar (good) performance,…