aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/glossary/sdp/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/glossary/sdp/index.html')
-rw-r--r--files/pt-br/glossary/sdp/index.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/files/pt-br/glossary/sdp/index.html b/files/pt-br/glossary/sdp/index.html
new file mode 100644
index 0000000000..e311e3b13f
--- /dev/null
+++ b/files/pt-br/glossary/sdp/index.html
@@ -0,0 +1,39 @@
+---
+title: SDP
+slug: Glossary/SDP
+tags:
+ - Avançado
+ - Colaborativo
+ - Comunicação
+ - Infraestrutura
+ - Ponto a ponto
+ - Tempo Real
+translation_of: Glossary/SDP
+original_slug: Glossario/SDP
+---
+<p><strong>SDP</strong> (Session Description {{glossary("Protocol")}}) é o padrão que descreve uma conexão {{Glossary("P2P","ponto a ponto")}}. SDP contém o {{Glossary("codec")}}, o endereço de origem e as informações de tempo de áudio e vídeo.</p>
+
+<p>Aqui está uma mensagem SDP típica:</p>
+
+<pre class="notranslate">v=0
+o=alice 2890844526 2890844526 IN IP4 host.anywhere.com
+s=
+c=IN IP4 host.anywhere.com
+t=0 0
+m=audio 49170 RTP/AVP 0
+a=rtpmap:0 PCMU/8000
+m=video 51372 RTP/AVP 31
+a=rtpmap:31 H261/90000
+m=video 53000 RTP/AVP 32
+a=rtpmap:32 MPV/90000</pre>
+
+<p>O SDP nunca é usado sozinho, mas por protocolos como {{Glossary("RTP")}} e {{Glossary("RTSP")}}. O SDP também é um componente do {{Glossary("WebRTC")}}, que usa o SDP como forma de descrever uma sessão.</p>
+
+<h2 id="Leia_mais">Leia mais</h2>
+
+<h3 id="Conhecimentos_gerais">Conhecimentos gerais</h3>
+
+<ul>
+ <li><a href="/en-US/docs/Web/API/WebRTC_API/Architecture/Protocols">Protocolos WebRTC</a></li>
+ <li>{{Interwiki("wikipedia", "Session Description Protocol")}} no Wikipedia</li>
+</ul>