WebRTC: Difference between revisions

From David's Wiki
No edit summary
Line 1: Line 1:
WebRTC (Web Real-Time Communication) is a standard for peer-to-peer real-time communication.   
[https://webrtc.org/ WebRTC (Web Real-Time Communication)] is a standard for peer-to-peer real-time communication.   
It supports audio streams, video streams, and data streams but has a complicated API and handshake which needs to be performed over an existing connection such as WebSockets to a server accessible from both peers.
It supports audio streams, video streams, and data streams but has a complicated API and handshake which needs to be performed over an existing connection such as WebSockets to a server accessible from both peers.


Line 6: Line 6:


==Native APIs (C++)==
==Native APIs (C++)==
==Resources==
==References==

Revision as of 12:02, 2 June 2020

WebRTC (Web Real-Time Communication) is a standard for peer-to-peer real-time communication.
It supports audio streams, video streams, and data streams but has a complicated API and handshake which needs to be performed over an existing connection such as WebSockets to a server accessible from both peers.


JavaScript APIs

Native APIs (C++)

Resources

References