Difference between revisions of "SDP"

From VideoLAN Wiki
Jump to navigation Jump to search
(fixed some links; there are no caches in mediawiki)
m (Tweak last)
 
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
SDP stands for "Session Description Protocol". It is used to describe a streaming session. SDP is defined in [http://www.ietf.org/rfc/rfc2327.txt| RFC2327]. SDP data is usually carried over [[SAP]], [[RTSP]] or in dedicated files.
+
{{Protocol|SDP}}
 +
 
 +
SDP stands for "Session Description Protocol". It is used to describe a [[stream]]ing session. SDP data is usually carried over [[SAP]], [[RTSP]] or in dedicated files.
  
 
The idea behind SDP is that you can store critical stream information in the SDP and distribute this over a reliable connection (such as [[HTTP]] or [[RTSP]]). Then you can stream the raw codec data over a lossy connection, such as [[RTP]] without the need for a container.
 
The idea behind SDP is that you can store critical stream information in the SDP and distribute this over a reliable connection (such as [[HTTP]] or [[RTSP]]). Then you can stream the raw codec data over a lossy connection, such as [[RTP]] without the need for a container.
  
VLC supports SDP.
+
== Links ==
 +
* [https://tools.ietf.org/html/rfc4566 RFC 4566]
 +
 
 +
== Source code ==
 +
* {{VLCSourceFile|modules/access/sdp.c}}

Latest revision as of 04:32, 19 April 2019

SDP
VLC uses this protocol (or access module) to read data from a device or network.
This protocol is handled by the sdp module.

SDP stands for "Session Description Protocol". It is used to describe a streaming session. SDP data is usually carried over SAP, RTSP or in dedicated files.

The idea behind SDP is that you can store critical stream information in the SDP and distribute this over a reliable connection (such as HTTP or RTSP). Then you can stream the raw codec data over a lossy connection, such as RTP without the need for a container.

Links

Source code