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 is a new front in the long war for an open and unencumbered web.”
----- Brendan Eich, Mozilla CTO and inventor of JavaScript
In this section, three main JavaScript API will be discuessed here, which are:
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/
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/
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
WebRTC based on peer-to-peer communication, but servers are needed.
Need to exchange “session description” objects
Can use any messaging mechanism
Can use any messaging protocol
There are mainly two application scenarios: small (or tiny) video/audio meeting or some online learning session.