|
- 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, allowing developers to build powerful voice- and video-communication solutions
- Getting started with peer connections - WebRTC
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 protocol
- 媒体设备使用入门 | WebRTC
在进行 Web 开发时,WebRTC 标准提供了一些 API,用于访问 摄像头和麦克风已连接到计算机或智能手机。 这些设备 通常称为媒体设备,可通过 JavaScript 进行访问 通过 navigator mediaDevices 对象实现,该对象会实现 MediaDevices 界面。
- 远程视频流使用入门 | WebRTC
RTCPeerConnection 连接到远程对等方后,便可以在它们之间流式传输音频和视频。此时,我们将从 getUserMedia() 收到的数据流连接到 RTCPeerConnection。媒体串流至少包含一个媒体轨道,当我们想要将媒体传输到远程对等方时,会将这些轨道单独添加到 RTCPeerConnection。 const localStream = await getUserMedia({video: true
- Getting started with WebRTC
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 with the various APIs in the WebRTC standard, by explaining a number of common use cases and code snippets for solving those
- Getting started with media devices - WebRTC
When developing for the web, the WebRTC standard provides APIs for accessing cameras and microphones connected to the computer or smartphone These devices are commonly referred to as Media Devices and can be accessed with JavaScript through the navigator mediaDevices object, which implements the MediaDevices interface
- Comienza a usar las conexiones entre pares - WebRTC
Las conexiones de pares son la parte de las especificaciones de WebRTC que se ocupa de conectar dos aplicaciones en diferentes computadoras para comunicarse con un protocolo de igual a igual La comunicación entre pares puede ser de video, audio o datos binarios arbitrarios (para clientes que admiten la API de RTCDataChannel)
- 数据通道 - WebRTC
数据通道 WebRTC 标准还涵盖通过 RTCPeerConnection。 可通过对 createDataChannel() RTCPeerConnection 对象,该对象会返回 RTCDataChannel 对象。
|
|
|