Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best C++ RTP/RTSP library [closed]

Tags:

c++

udp

rtsp

rtp

sip

I'm looking for a RTP/RTSP library in C++. I found pjsip but it is more C-style. I'm looking for more OO library.

like image 802
cubesoft Avatar asked Sep 22 '09 13:09

cubesoft


People also ask

Does RTSP use RTP?

323 and RTP. Both H. 323 and RTSP use RTP as their standard means of actually delivering the multimedia data. This data-level compatibility makes efficient gateways between the protocols possible, since only control messages need to be translated.

Is RTP and RTSP the same?

RTSP and RTP are often used interchangeably. But to be clear: RTSP is a presentation-layer protocol that lets end users command media servers via pause and play capabilities, whereas RTP is the transport protocol used to move said data.

What is RTP RTSP port?

RTP is the transport protocol for real-time data. It provides timestamp, sequence number, and other means to handle the timing issues in real-time data transport. RTSP is a control protocol that initiates and directs delivery of streaming multimedia data from media servers.


2 Answers

Check live555 Useful libraries and code examples of how to stream stuff from your own app. The repo is full of RTP, RTSP, and SIP code examples and libraries.

like image 189
Toad Avatar answered Oct 05 '22 15:10

Toad


JRTPLIB is very nice, and used in well-known projects such as SightSpeed (and lots of little ones). Pretty well-designed, very flexible license; pretty easy to get things right with it.

like image 39
jesup Avatar answered Oct 05 '22 15:10

jesup