mediasoup

/ home / F.A.Q.

F.A.Q.

Why a Node.js module?

You may wonder “why not a standalone server?”. That's a fair question.

Being a Node.js module, mediasoup is easily integrable within larger Node.js applications. Consider that mediasoup just handles the media plane (audio/video streams) so the application needs some kind of signaling mechanism. Having both the signaling and the media handlers working together makes the application architecture easier.

All those using others languages/platforms for the signaling plane would need to develop their own communication channel with a standalone Node.js server running mediasoup (or wait for somebody to do it).

Is mediasoup a native addon?

Not exactly. Native addons are Node.js extensions written in C/C++ that can be loaded using require() as if they were ordinary Node.js modules.

Instead, mediasoup launches a set of C++ child processes (media workers) and communicates with them by means of inter-process communication. This approach leads to a media worker design not tiled to the internals of Node.js or V8 (which change in every new release).

Which signaling protocol does it use?

That's a wrong question. mediasoup does not provide any network signaling protocol to communicate with endpoints/browsers. It just handles the media layer and provides a JavaScript API to set the media parameters.

It's up to the application developer to build his preferred signaling protocol to carry messages with such parameters.

Is there any example code?

Yes, check the examples.

Does mediasoup transcode?

No. All the peers in a room should support a common subset of audio and video codecs. Said that, WebRTC defines a list of MTI (“mandatory to implement”) audio/video codecs, so in a world of happy unicorns this topic should not be a problem.

Does it work with legacy SIP endpoints?

No. If you expected a different response here it means that you have not properly read the mediasoup documentation.

mediasoup is “just” a SFU, it does not implement the SIP protocol nor it does audio mixing. In order to integrate a SIP/PSTN system with mediasoup you need to build a client or gateway that connects to mediasoup as a regular peer and acts as an audio mixer in the other leg (in which it implements the SIP protocol).

Running mediasoup in hosts with private IP (AWS, Google Cloud, Azure)

Those environments run virtual hosts with private IP and provide mechanisms to route an external public IP into that private IP. mediasoup implements ICE-Lite meaning that it won't initiate ICE connections but will always act as ICE “server” role.

In order to run mediasoup in those environments (host with private IP and a mapped public IP):

How to use H264 for webcam and VP8 for screen sharing

Check the Tricks section.

When consuming a video in Firefox it does not properly rotate

Check the Tricks section.