aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/webrtc/index.html
blob: cd7d0f861e11466c46afb2cfa53f264692e39b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>