Difference between revisions of "RTP"

From VideoLAN Wiki
Jump to navigation Jump to search
m (Add link descriptions, header whitespace)
(Expand with new section →‎RTP/AVP)
Line 1: Line 1:
{{Wikipedia|Real-time Transport Protocol}}
+
{{Wikipedia
 +
|Real-time Transport Protocol|label1=RTP
 +
|RTP audio video profile|label2=RTP/AVP
 +
}}
 
'''RTP''' or '''Real-time Transport Protocol''' is a [[protocol]] for streaming media (including [[VoIP]] and video teleconferencing) over the Internet. [[RTCP]] is used alongside this protocol to give feedback on the quality of the connection and [[RTSP]] changes streaming aspects of the connection.<br />
 
'''RTP''' or '''Real-time Transport Protocol''' is a [[protocol]] for streaming media (including [[VoIP]] and video teleconferencing) over the Internet. [[RTCP]] is used alongside this protocol to give feedback on the quality of the connection and [[RTSP]] changes streaming aspects of the connection.<br />
 
For example, RTP might stream a video, RTCP might show dropped frames, and RTSP might pause the video playback.<br />
 
For example, RTP might stream a video, RTCP might show dropped frames, and RTSP might pause the video playback.<br />
 
RTP is often layered on top of [[UDP]] because UDP is quicker than [[TCP]].
 
RTP is often layered on top of [[UDP]] because UDP is quicker than [[TCP]].
  
VLC has built-in support for RTP as a server (streaming output).<br />
+
VLC has built-in support for RTP as a server (streaming output). As a client, VLC uses the [[LiveMedia]] library.
As a client, VLC uses the [[LiveMedia]] library.
+
 
 +
== RTP/AVP ==
 +
RTP is generic and is extensible through profiles. '''RTP/AVP''' or '''RTP Audio Video Profile''' is a ''profile'' for RTP specific for live multimedia streams. RTP/AVP requires a specified ''payload format'' to establish which [[codec]]s will be used. Each has a dedicated RFC, e.g. [https://tools.ietf.org/html/rfc6184 RFC 6184] for [[H.264]] payload format.
  
 
== Links ==
 
== Links ==
 
* [https://tools.ietf.org/html/rfc3550 RFC 3550]: RTP
 
* [https://tools.ietf.org/html/rfc3550 RFC 3550]: RTP
* [https://tools.ietf.org/html/rfc3551 RFC 3551]: RTP/AVP (Audio/Video Profile)
+
* [https://tools.ietf.org/html/rfc3551 RFC 3551]: RTP/AVP
  
 
[[Category:Protocols]]
 
[[Category:Protocols]]

Revision as of 05:00, 26 February 2019

RTP or Real-time Transport Protocol is a protocol for streaming media (including VoIP and video teleconferencing) over the Internet. RTCP is used alongside this protocol to give feedback on the quality of the connection and RTSP changes streaming aspects of the connection.
For example, RTP might stream a video, RTCP might show dropped frames, and RTSP might pause the video playback.
RTP is often layered on top of UDP because UDP is quicker than TCP.

VLC has built-in support for RTP as a server (streaming output). As a client, VLC uses the LiveMedia library.

RTP/AVP

RTP is generic and is extensible through profiles. RTP/AVP or RTP Audio Video Profile is a profile for RTP specific for live multimedia streams. RTP/AVP requires a specified payload format to establish which codecs will be used. Each has a dedicated RFC, e.g. RFC 6184 for H.264 payload format.

Links