All Articles

A Brief Intro to WebRTC

This blog is about the notes of the WebRTC of an internal knowledge sharing. This blog will only discuss about high-level architecture and API in WebRTC.

WebRTC in A Nutshell

WebRTC: Web Real-time Communication

WebRTC is a new front in the long war for an open and unencumbered web.

----- Brendan Eich, Mozilla CTO and inventor of JavaScript

Brief Functionalities

  • Open Source Project, providing browsers, mobile applications with simple API.
  • Supports direct peer-to-peer audio and video communication inside web pages.
  • Standards published by W3C and IETF (Internet Engineering Task Force).
  • Developed in C++ and JavaScript.

WebRTC Architecture (Framework)

WebRTC Architecture

WebRTC Applications Acorss Platforms

  • Chrome
  • Chrome on Android
  • FireFox
  • Opera
  • And ** IE ** doesn’t support WebRTC.

Application on Browsers Application on Mobile Applications

Main Tasks of WebRTC

  • Acquiring audio and video
  • Communicating audio and video
  • Communicating arbitrary data

WebRTC JavaScript API

In this section, three main JavaScript API will be discuessed here, which are:

  • MediaStream (getUserMedia)
  • RTCConnection
  • RTCDataChannel

MediaStream (getUserMedia)

  • Represent a stream of audio and/or video
  • Can contain multiple ‘tracks’
  • Obtain MediaStream with navigator.getUserMedia()

Application on Browsers

JavaScript API Sample

var constraints = {video: true};

function successCallback(stream) {
  var video = document.querySelector("video");
  video.src = window.URL.createObjectURL(stream);
}

function errorCallback(error) {
  console.log("navigator.getUserMedia error: ", error);
}

navigator.getUserMedia(constraints, successCallback, errorCallback);

A simple demo here: https://andrei.codes/ascii-camera/

RTCPeerConnection: Audio and Video Communication between Peers

Communicate Media Streams

RTCPeerConnection Does A Lot

  • Signal Processing
  • Codec Handling
  • Peer to Peer Communication
  • Security
  • Bandwidth Management
pc = new RTCPeerConnection(null);
pc.onaddstream = gotRemoteStream;
pc.addStream(localStream);
pc.createOffer(gotOffer);

function gotOffer(desc) {
  pc.setLocalDescription(desc);
  sendOffer(desc);
}

function gotAnswer(desc) {
  pc.setRemoteDescription(desc);
}

function gotRemoteStream(e) {
  attachMediaStream(remoteVideo, e.stream);
}

A simple demo: https://simpl.info/rtcpeerconnection/

RTCDataChannel: Birdirectional Communication of Arbitrary Data Between Peers

RTCDataChannel Application

RTCDataChannel

  • Sample API as WebSockets
  • Ultra-low Latency
  • Unreliable or Reliable
  • Secure

Sample code of the API:

var pc = new webkitRTCPeerConnection(servers,
  {optional: [{RtpDataChannels: true}]});

pc.ondatachannel = function(event) {
  receiveChannel = event.channel;
  receiveChannel.onmessage = function(event){
    document.querySelector("div#receive").innerHTML = event.data;
  };
};

sendChannel = pc.createDataChannel("sendDataChannel", {reliable: false});

document.querySelector("button#send").onclick = function (){
  var data = document.querySelector("textarea#send").value;
  sendChannel.send(data);
};

A simple demo: http://www.simpl.info/dc

Servers and Protocols

WebRTC based on peer-to-peer communication, but servers are needed.

Abstract Signaling

  • Need to exchange “session description” objects

    • What formats I support, what I want to send
    • Network Information for peer-to-peer setup
  • Can use any messaging mechanism

  • Can use any messaging protocol

Signaling Diagram

Signaling Diagram

Several Architectures

Peer-to-Peer: one-to-one call

Peer-to-Peer

Mesh: small N-way Call

Mesh: Small N-way Call )

Star: Medium N-way Call

Star: Medium N-way Call )

MCU: Large N-way Call

Star: Medium N-way Call )

Application Scenarios

There are mainly two application scenarios: small (or tiny) video/audio meeting or some online learning session.

Scenraio I: Video Conference

Scenario I: P2P Communication )

Scenario I: Signaling Mechanism )

Scenario II: Live Stream

Scenario II: Live Stream )

Published Apr 15, 2021

Do not quench your inspiration and your imagination; do not become the slave of your model.