if you look at the oflaDemo server side stuff (Application.java), there is some commented code using ServerStream.
out of my head: move the creation of the serverstream away from the connect handler to the application init make sure that the serverstream is not closed on client disconnect adding a suitable entry (live0) to the list of available files in DemoService.java this should get you running. if you want the playlist to loop, use the serverStream.setRewind(true) call (not the setRepeat!). on the other hand, i think the serverstream does not work correctly with a playlist of flv files. something with the rtmp timing is really off. with increasing network latency, the client buffer runs dry (something you usually dont notice when developing on the local machine). i checked the client code with fms, and fms did not have that problem. there is also something happening when the playlist jumps to the next item, its re-buffering when it should run seamless basically. andi [EMAIL PROTECTED] schrieb: > I need to set up (quickly if possible) a red5 application that is able to > stream a playlist of .flv videos. > Where I can find some useful informations about what functions could help me > to solve this task. > I thought I had to pass to client player the offset on the current video and > the current video to make it start to the right point of video, but as you > know there's a better way to let the server start by its own the streaming at > the right place to clients? (I don't need any seeking capabilities). > > Thank you! > > Francesco > > > ------------------------------------------------------ > Leggi GRATIS le tue mail con il telefonino i-mode⢠di Wind > http://i-mode.wind.it/ > > > _______________________________________________ > Red5 mailing list > [email protected] > http://osflash.org/mailman/listinfo/red5_osflash.org > > _______________________________________________ Red5 mailing list [email protected] http://osflash.org/mailman/listinfo/red5_osflash.org
