aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/webrtc
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/glossary/webrtc
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/de/glossary/webrtc')
-rw-r--r--files/de/glossary/webrtc/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/files/de/glossary/webrtc/index.html b/files/de/glossary/webrtc/index.html
new file mode 100644
index 0000000000..cd7d0f861e
--- /dev/null
+++ b/files/de/glossary/webrtc/index.html
@@ -0,0 +1,26 @@
+---
+title: WebRTC
+slug: Glossary/WebRTC
+translation_of: Glossary/WebRTC
+---
+<p><span class="seoSummary"><strong>WebRTC</strong> (<em>Web Real-Time Communication (übersetzt: Web Echtzeit Kommunikation)</em>) ist eine {{Glossary("API")}}, die zum Erstellen von Video-Chat-, Audiogespräch- und P2P-Dateiaustausch<br>
+ Web-Anwendungen benutzt wird.</span></p>
+
+<p>WebRTC besteht hauptsächtlich aus folgenden Teilen:</p>
+
+<dl>
+ <dt>{{domxref("MediaDevices.getUserMedia", "getUserMedia()")}}</dt>
+ <dd>Gewährt Zugang zu einer Kamera und/oder Mikrofon des Geräts, dessen Signale an eine RTC-Verbindung übergeben werden können.</dd>
+ <dt>{{domxref("RTCPeerConnection")}}</dt>
+ <dd>Eine Schnittstelle zum Konfigurieren von Video- oder Audio-Gespächen.</dd>
+ <dt>{{domxref("RTCDataChannel")}}</dt>
+ <dd>Stellt eine Methode zum Erstellen von {{Glossary("P2P")}} Daten Kanälen zwischen Browsern bereit.</dd>
+</dl>
+
+<h2 id="Learn_more">Learn more</h2>
+
+<ul>
+ <li>{{Interwiki("wikipedia", "WebRTC")}} on Wikipedia</li>
+ <li><a href="/en-US/docs/Web/API/WebRTC_API">WebRTC API on MDN</a></li>
+ <li><a href="http://caniuse.com/rtcpeerconnection">Browser support for WebRTC</a></li>
+</ul>