aboutsummaryrefslogtreecommitdiff
path: root/files/fr/glossaire/sdp/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/glossaire/sdp/index.html')
-rw-r--r--files/fr/glossaire/sdp/index.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/files/fr/glossaire/sdp/index.html b/files/fr/glossaire/sdp/index.html
new file mode 100644
index 0000000000..cf708be673
--- /dev/null
+++ b/files/fr/glossaire/sdp/index.html
@@ -0,0 +1,38 @@
+---
+title: SDP
+slug: Glossaire/SDP
+tags:
+ - Avancé
+ - Collaboratif
+ - Glossaire
+ - Infrastructure
+ - WebRTC
+ - protocole
+translation_of: Glossary/SDP
+---
+<p><strong>SDP </strong>(Session Description {{glossary("Protocol")}}) est le standard décrivant une connexion {{Glossary("P2P","pair-à-pair")}}. SDP contient le {{Glossary("codec")}}, l'adresse source, et des informations temporelles pour l'audio et la vidéo.</p>
+
+<p>Voici un message SDP typique :</p>
+
+<pre> 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>SDP n'est jamais employé seul, mais des protocoles comme {{Glossary("RTP")}} et {{Glossary("RTSP")}} l'utilisent. SDP est également un composant de {{Glossary("WebRTC")}}, ce dernier se servant de SDP pour décrire une session.</p>
+
+<h2 id="Pour_approfondir">Pour approfondir</h2>
+
+<h3 id="Culture_générale">Culture générale</h3>
+
+<ul>
+ <li><a href="https://developer.mozilla.org/fr/docs/Web/API/WebRTC_API/Protocols">Protocoles WebRTC</a></li>
+ <li>{{Interwiki("wikipedia", "Session Description Protocol")}} sur Wikipédia</li>
+</ul>