WebRTC Multipoint: Mix, Mesh or Route?

September 15, 2014

Multipoint for VoIP had never been more varied than it is today.

Earlier this year, Gustavo Garcia Bernardo wrote a great post about multipoint in WebRTC for webrtcHacks. What got me to write this post is the work I am doing on the WebRTC Glossary, where I had to give some quick explanations on mixing, mesh and routing of media. While I like Gustavo’s post, I had my own things to share about this topic.

Selection

The first thing to say here is that WebRTC is no different than other VoIP protocols when it comes to multipoint support. The thing with other VoIP protocols is that they almost always fail to standardize multipoint properly, leaving the implementer with two options:

  1. Select a mixer solution (because it requires no standardization for the naive implementation)
  2. Do something proprietary

With VoIP, standardization comes first and foremost, so you ended up with a mixer. The adventurous ones went for a proprietary solution, but most didn’t really succeed.

The difference with WebRTC is that standards for signaling are no longer that important. And less so interoperability across services. This made the ability to non-mixer media architectures for multipoint possible.

The 3 options available when trying to handle media in a multipoint call are:

  1. Mesh, where all participants send their media to all the rest of the participants
  2. Router, where a central server receives media from all other participants and routes that media to the rest, with little to no processing of that media
  3. Mixing, where all participants send their media to an MCU, which decodes and then generates a single media stream that is sent to all participants

Things to remember

  • Each option has its nuances and varieties. Here are a couple of examples
    • A router can also use SVC to provide better media quality and user experience
    • A mixer can encode the same media stream for all participants, or use an “encoder per participant”, where each participant gets its own special view
    • A mixer/router can show a single media stream based on the “active speaker” (=he who shouts the loudest)
    • A mixer/router can throw participants from view after a given threshold (usually 10 or so), deciding to show only the loudest or most recent streams
  • Hybrid options are also acceptable
    • Using mesh up to 4 participants and then switching to a router or mixer mode
    • Having a mesh for the active participants in a webinar and then using a mixer or router to stream media to a larger group of passive viewers
  • There is no one-size-fits-all for multipoint, which makes WebRTC the perfect piece of technology for multipoint (even if most will complain that it isn’t really supported in WebRTC)

You may also like

Comment​

Your email address will not be published. Required fields are marked

{"email":"Email address invalid","url":"Website address invalid","required":"Required field missing"}