aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/webrtc/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/glossary/webrtc/index.html')
-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>