Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

WebRTC APIの概要

この翻訳は不完全です。英語から この記事を翻訳 してください。

WebRTCはいくつもの相互関係のAPIとデータやメディアを2以上のピアを張って交換するプロトコルから出来ています。 この記事では簡潔にをそれぞれのAPIとそれを提供する目的を紹介します。

RTCPeerConnection

Before media can be exchanged, or a data channel established, you need to link two peers together. This is accomplished using the RTCPeerConnection interface.

MediaStream

The MediaStream interface represents a stream of media data being transmitted from one peer to another. This stream consists of one or more tracks; typically this is an audio track and a video track. A stream can transmit live media (for audio calls or videoconferencing) or stored media (such as a streamed movie).

RTCDataChannel

WebRTCは2ピア間で任意のバイナリデータを相互に転送するためのコネクションを張ります。これはRTCDataChannelインターフェースを使用することで実現できます 。

This can be used for back-channel information, or even as your primary channel for exchanging any kind of data you wish. For games, it could be used to implement multiplayer support, transmitting player movement updates and the like back and forth.

ドキュメントのタグと貢献者

 このページの貢献者: lv7777
 最終更新者: lv7777,