Live555 lib has a nice example testOnDemandRTSPServer.cpp This example just stream "one" given file. I want to stream more than one file. Does Live555 has playlist concept or how to stream more than one file in Live555?

Best Wishes

PS: I try to add more than one subsession, in that case Live555 just stream the last session file...

link|improve this question

80% accept rate
Do you mean stream more than one file consecutively (in the same RTSP session) or do you mean multiple media files to different clients? – Ralf Jun 30 '11 at 14:49
@Ralf For now i mean stream more than one file consecutively. Suppose i have videoA, VideoB, VideoC.. I want to stream them consecutively and in a single session if possible... Suppose client request rtsp://xxxxxx/Video and server will stream first VideoA, then VideoB then videoC etc... – Novalis Jun 30 '11 at 15:39
feedback

1 Answer

up vote 0 down vote accepted

My 0.02 cents: I'm not sure if that makes sense: how would you ensure that they are all encoded in the same format which is a requirement if you want to stream them in the same session. RTSP describe gets a media session description of the file and this is used to setup the streaming sessions so it is crucial that all files encoded similarly.

RTSP does not make any provision for playlists. Usually playlists are not transferred via RTSP, but say via HTTP. IMO if the playlist resides on the client it would make more sense to await the RTCP bye packet (at the eof) and then to do a SETUP and PLAY for the next file/RTSP URI in the playlist.

If you just want to stream a sequence of files (playlist is on the server) where the RTSP client just initiates one session, of course nothing prevents you from creating a custom file source in the live555 library that does what you want...

link|improve this answer
Well, the assumption : they are all encoded in the same format is true for me... nothing prevents me ofcourse to write custom source file but i just wanted to know if library has such a build in capability...Thanks – Novalis Jun 30 '11 at 16:55
Ok, for sure. If you are using live555 it is well worth it joining the mailing list, and response time is usually very good. Just make sure you read the FAQ before posting. – Ralf Jun 30 '11 at 17:04
feedback

Your Answer

 
or
required, but never shown

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