开发者

Streaming more than one file using Live555

Live555 lib has a nice example testOnDemandRTSPServer.cpp This example just stream "one" given 开发者_C百科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...


There is one more application that comes with the live555 code. Live555Media server is present inside the source code's mediaServer directory. This does the job. It uses the dynamicRTSP server class. You give it the folder with all your media files and access them as rtsp://ip/filename.


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...


Recently I had to do similar task and with similar functionality:

Here what you can do for video H264 stream files to play in the row like playlist (of course if they are same resolution, encoding profile,etc)

You would have to modify ByteStreamFileSource::doGetNextFrame method. There is code like feof(fFid)

 if (feof(fFid))
 {
     CloseInputFile(fFid);
     fFid = OpenInputFile(envir(), "test.264");
     //fileName
 } 
else ....

Of course if you still need LGPL compliance you there will be more work to do... You will have to copy/rename this class outside library and do the same with H264VideoFileServerMediaSubsession and modify method createNewStreamSource that it would use you rewritten class of ByteStreamFileSource.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜