diff options
author | Florian Dieminger <me@fiji-flo.de> | 2021-02-11 18:27:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 18:27:33 +0100 |
commit | 609ee7efcfe881caa08237948e1ed3252e60afa1 (patch) | |
tree | e8c22089de06c8ef1a6d75a6e0d1e893403cd07a /files/pt-pt/glossary/webrtc/index.html | |
parent | ad7f998115dd568832332484debf1f1b16b0c905 (diff) | |
parent | 8519a85da1acd5b7863268b6cf6f9e4fd14bcf31 (diff) | |
download | translated-content-609ee7efcfe881caa08237948e1ed3252e60afa1.tar.gz translated-content-609ee7efcfe881caa08237948e1ed3252e60afa1.tar.bz2 translated-content-609ee7efcfe881caa08237948e1ed3252e60afa1.zip |
Merge pull request #43 from fiji-flo/unslugging-pt-pt
Unslugging pt pt
Diffstat (limited to 'files/pt-pt/glossary/webrtc/index.html')
-rw-r--r-- | files/pt-pt/glossary/webrtc/index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/files/pt-pt/glossary/webrtc/index.html b/files/pt-pt/glossary/webrtc/index.html new file mode 100644 index 0000000000..23ca2c94b2 --- /dev/null +++ b/files/pt-pt/glossary/webrtc/index.html @@ -0,0 +1,33 @@ +--- +title: WebRTC +slug: Glossary/WebRTC +tags: + - Glossário + - Infraestrutura + - JavaScript + - P2P + - VoIP + - WebRTC +translation_of: Glossary/WebRTC +original_slug: Glossário/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> |