From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/glossary/sdp/index.html | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 files/zh-cn/glossary/sdp/index.html (limited to 'files/zh-cn/glossary/sdp') diff --git a/files/zh-cn/glossary/sdp/index.html b/files/zh-cn/glossary/sdp/index.html new file mode 100644 index 0000000000..42611e00f2 --- /dev/null +++ b/files/zh-cn/glossary/sdp/index.html @@ -0,0 +1,32 @@ +--- +title: SDP +slug: Glossary/SDP +translation_of: Glossary/SDP +--- +

SDP (Session Description {{glossary("Protocol")}}) 是一个描述{{Glossary("P2P","peer-to-peer")}} 连接的标准. SDP包含音视频的:编解码({{Glossary("codec")}}),源地址,和时间信息.

+ +

下面是一个典型的SDP信息示例:

+ +
   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
+ +


+ SDP协议从不会被单独使用,而是依靠 {{Glossary("RTP")}} 和{{Glossary("RTSP")}}等协议.SDP也作为{{Glossary("WebRTC")}}的组件之一,用于描述一个session会话.

+ +

了解更多

+ +

General knowledge

+ + -- cgit v1.2.3-54-g00ecf