
WebRTC
With WebRTC, you can add real-time communication capabilities to your application that works on top of an open standard. It supports video, voice, and generic data to be sent between peers, …
Getting started with WebRTC
May 28, 2019 · Creating a new application based on the WebRTC technologies can be overwhelming if you're unfamiliar with the APIs. In this section we will show how to get started …
Getting started with peer connections - WebRTC
Dec 20, 2021 · Peer connections is the part of the WebRTC specifications that deals with connecting two applications on different computers to communicate using a peer-to-peer …
Getting started with media devices - WebRTC
May 4, 2023 · When developing for the web, the WebRTC standard provides APIs for accessing cameras and microphones connected to the computer or smartphone. These devices are …
媒体设备使用入门 - WebRTC
在进行 Web 开发时,WebRTC 标准提供了一些 API,用于访问 摄像头和麦克风已连接到计算机或智能手机。这些设备 通常称为媒体设备,可通过 JavaScript 进行访问 通过 …
远程视频流使用入门 | WebRTC
RTCPeerConnection 连接到远程对等方后,便可以在它们之间流式传输音频和视频。 此时,我们将从 getUserMedia() 收到的数据流连接到 RTCPeerConnection。媒体串流至少包含一个媒体 …
Getting started with remote streams - WebRTC
Sep 7, 2023 · WebRTC Guides Getting started with remote streams Once a RTCPeerConnection is connected to a remote peer, it is possible to stream audio and video between them. This is …
数据通道 - WebRTC
WebRTC 标准还涵盖通过 RTCPeerConnection。可通过对createDataChannel() RTCPeerConnection 对象,该对象会返回 RTCDataChannel 对象。
TURN 服务器 - WebRTC
大多数 WebRTC 应用都需要服务器来中继对等方之间的流量,因为客户端之间通常无法建立直接套接字(除非它们位于同一本地网络中)。常见的解决方法是使用 TURN 服务器。该术语代 …
Primeiros passos com as conexões de peering | WebRTC
As conexões de pares são a parte das especificações do WebRTC que lidam com a conexão de dois aplicativos em computadores diferentes para se comunicar usando um protocolo peer-to …