I'm thinking about developing a streaming server and I have the following question, do over RTSP (example url: rtsp://192.168.0.184/myvideo.mpg) or RTP (example url: rtp://192.168.0.184).

As I have understood, an RTSP server is mainly used for streaming of files that already exist, ie, not live. RTP server is used to broadcast.

Somebody correct me if I'm wrong, am I right?.

What I want to develop a server to broadcast live content on the computer screen, that is, which is displayed at the time that is broadcast in streaming.

Thanks for the help. Greetings!

link|improve this question

Also, you may want to checkout (pun unintended :)) Apple's open source Darwin Streaming Server (to avoid reinventing the wheel - unless you have custom requirements not met by existing solutions). – JP19 Nov 29 '10 at 11:58
feedback

4 Answers

up vote 6 down vote accepted

You are getting something wrong... RTSP is a realtime streaming protocol. Meaning, you can stream whatever you want in real time. So you can use it to stream LIVE content (no metter what it is, video, audio, text, presentation...). RTP is a transport protocol which is used to transport media data which is negotiated over RTSP.

You use RTSP to control media transmition over RTP. You use it to setup, play, pause, teardown the stream...

So, if you want your server to just start streaming when the URL is requested, you can implement some sort of RTP-only server. But if you want more control and if you are streaming live video, you must use RTSP, because it transmits SDP and other important decoding data...

Read the documents I linked here, they are a good starting point.

link|improve this answer
:Thanks for your explanation.I m trying to stream audio in J2Me apps and I m new for protocols.I want to know whether we can send RTSP requests to RTP servers(Perhaps changes of port number would be needed from the client app.)You mentioned you can implement some sort of RTP-only server Does it mean that there are servers what can handle both rtp,rtcp? What are the servers(rtp,rtcp) we can use in our local machine for testing. – Aash Maharoon Dec 25 '11 at 6:07
feedback

Some basics:

-->As I have understood, an RTSP server is mainly used for streaming of files that already -exist, ie, not live. RTP server is used to broadcast.

RTSP server can be used for dead source as well as for live source. RTSP protocols provides you commands (Like your VCR Remote), and functionality depends upon your implementation.

RTP is real time protocol used for transporting audio and video in real time. Transport used can be unicast, multicast or broadcast, depending upon transport address and port. Besides transporting RTP does lots of things for you like packetization, reordering, jitter control, QoS, support for Lip sync.....

In your case if you want broadcasting streaming server then you need both RTSP (for control) as well as RTP (broadcasting audio and video)

To start with you can go through sample code provided by live555

link|improve this answer
feedback

AFAIK, RTSP does not transmit streams at all, it is just an out-of-band control protocol with functions like PLAY and STOP.

Raw UDP or RTP over UDP are transmission protocols for streams just like raw TCP or HTTP over TCP.

To be able to stream a certain program over the given transmission protocol, an encapsulation method has to be defined for your container format. For example TS container can be transmitted over UDP but Matroska can not.

Pretty much everything can be transported thru TCP though.

(The fact that wich codec do you use also matters indirectly as it restricts the container fromats you can use.)

link|improve this answer
feedback

I think thats correct. RTSP may use RTP internally.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.