diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/pt-pt/glossário/webrtc/index.html | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/pt-pt/glossário/webrtc/index.html')
-rw-r--r-- | files/pt-pt/glossário/webrtc/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/files/pt-pt/glossário/webrtc/index.html b/files/pt-pt/glossário/webrtc/index.html new file mode 100644 index 0000000000..452b4f3f24 --- /dev/null +++ b/files/pt-pt/glossário/webrtc/index.html @@ -0,0 +1,32 @@ +--- +title: WebRTC +slug: Glossário/WebRTC +tags: + - Glossário + - Infraestrutura + - JavaScript + - P2P + - VoIP + - WebRTC +translation_of: Glossary/WebRTC +--- +<p><span class="seoSummary"><strong>WebRTC</strong> (<em>Comunicações da Web em Tempo Real</em>) é uma {{Glossary("API")}} que pode ser utilizada por aplicativos de videoconferência, chamadas de voz, e P2P.</span></p> + +<p>O WebRTC consiste principalmente destas partes:</p> + +<dl> + <dt>{{domxref("MediaDevices.getUserMedia", "getUserMedia()")}}</dt> + <dd>Concede acesso à câmera e / ou microfone de um dispositivo, e pode conectar os seus sinais a uma conexão RTC.</dd> + <dt>{{domxref("RTCPeerConnection")}}</dt> + <dd>Uma interface para configurar videoconferências ou chamadas de voz.</dd> + <dt>{{domxref("RTCDataChannel")}}</dt> + <dd>Fornece um método para estabelecer uma conexão {{Glossary("P2P")}} entre navegadores web.</dd> +</dl> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{Interwiki("wikipedia", "WebRTC")}} na Wikipédia</li> + <li><a href="/en-US/docs/Web/API/WebRTC_API">WebRTC API na MDN</a></li> + <li><a href="http://caniuse.com/rtcpeerconnection">Compatibilidade dos navegadores com WebRTC</a></li> +</ul> |