WebRTC (Real Time Communication)

WebRTC is a free, open project that enables Web browsers with Real Time Communications (RTC) capabilities via simple JavaScript APIs.

It is about providing a network infrastructure for real-time media communication.

The following are the basic API's used

1.) MediaStream
    For retrieving audio and video

2.) RTCPeerConnection
    For communicating audio and video

3.) RTCDataChannel
    For communicating data

Search