aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/webrtc_api/overview
diff options
context:
space:
mode:
authorFlorian Dieminger <me@fiji-flo.de>2021-02-11 18:29:51 +0100
committerGitHub <noreply@github.com>2021-02-11 18:29:51 +0100
commit2bc5610921312613f8623f7ed347aa576689b2b6 (patch)
treef17a7a00e232c97d1335ff3cb24dbcfafacfe141 /files/zh-cn/web/api/webrtc_api/overview
parent964decad361766e85d928a56f0ab80af0e75c172 (diff)
parentfc56124ac4eda6b3f0349c8a16fa750f27b4c7d6 (diff)
downloadtranslated-content-2bc5610921312613f8623f7ed347aa576689b2b6.tar.gz
translated-content-2bc5610921312613f8623f7ed347aa576689b2b6.tar.bz2
translated-content-2bc5610921312613f8623f7ed347aa576689b2b6.zip
Merge pull request #32 from fiji-flo/unslugging-zh-cn
Unslugging zh cn
Diffstat (limited to 'files/zh-cn/web/api/webrtc_api/overview')
-rw-r--r--files/zh-cn/web/api/webrtc_api/overview/index.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/files/zh-cn/web/api/webrtc_api/overview/index.html b/files/zh-cn/web/api/webrtc_api/overview/index.html
deleted file mode 100644
index da693553b8..0000000000
--- a/files/zh-cn/web/api/webrtc_api/overview/index.html
+++ /dev/null
@@ -1,23 +0,0 @@
----
-title: WebRTC API overview
-slug: Web/API/WebRTC_API/Overview
-translation_of: Web/API/WebRTC_API#WebRTC_concepts_and_usage
-translation_of_original: Web/API/WebRTC_API/Overview
----
-<p>{{WebRTCSidebar}}</p>
-
-<p><span class="seoSummary">WebRTC是由一些关联的API和协议一起协作,支持两个或多个终端之间交换数据和媒体信息的技术。这篇文章提供了这些APIs的介绍和提供的功能。</span></p>
-
-<h2 id="RTCPeerConnection">RTCPeerConnection</h2>
-
-<p>在媒体能够交换,或者数据通道建立之前,你需要把两个终端连接起来。这个连接过程的完成就是使用{{domxref("RTCPeerConnection")}} 接口。</p>
-
-<h2 id="MediaStream">MediaStream</h2>
-
-<p>{{domxref("MediaStream")}}接口描述了终端之间传输的媒体流。这个流由一个或多个媒体通道信息;通常这是一个音频通道或者视频通道信息。一个媒体流能够传输实时的媒体(例如音频通话或者视频会议等)或者已存的媒体(例如网上电影)。</p>
-
-<h2 id="RTCDataChannel">RTCDataChannel</h2>
-
-<p>WebRTC支持在建立连接的两个终端之间相互的传输二进制数据。这个过程通过{{domxref("RTCDataChannel")}}接口。</p>
-
-<p>这个接口可以作为数据的反向通道,甚至作为主要的数据通道去交换各种数据。例如在游戏应用中,通过这个接口可以实现多玩家支持,相互传送玩家的动作更新之类的数据。</p>