[Django]-WebRTC and Django

6👍

I realize this is a fairly old question, but there’s misinformation in the reply above. WebRTC is a peer to peer protocol, not specifically a browser to browser protocol. In other words, the fact that a browser is a WebRTC peer is an implementation detail, not a standards requirement.

The IETF requirements document, section 3.4.3 specifically gives an example of a server-based peer for a video conferencing use case. Having said that, it’s a nontrivial project; look at Asterisk’s rtcweb support or Erizo for examples in the wild.

👤CraigM

Leave a comment