An open source project on the implementation of MCR WebRTC on the server

I recently learned how to implement WebRTC MCU software on a server. I find an open source project called licode , but it's hard for me to understand its source code. Can you recommend some articles or documents explaining the source code, or is there another open source project that you can recommend for implementing MCU WebRTC?

+7
open-source webrtc
source share
1 answer

Janus is what you are looking for. This is a new cool guy on the block, and I realized that it is very easy to understand, because he does not make assumptions on the plane of the signaling or functions that you will use in your gateway.

It comes with a kernel that acts as a central hub for browser connections, and then implements all its functions with plugins. For example, here you have the MCU video plugin code:

https://github.com/meetecho/janus-gateway/blob/master/plugins/janus_videoroom.c

As you can see, it is programmed in C and comes with the JS API and clears the code samples. Think this is ideal for researching a project compared to already overblown multi-stack solutions (Licode, Jitsi Videobridge, etc.).

Hope this helps!

+5
source share

All Articles