On 14/07/2006, at 9:21 PM, electroteque wrote:

>
> It looks like a server side playlist and a broadcast record stream 
> cant be used on the same application, the playlist seemed to have 
> recorded to the streamname of the test broadcast, is this true ?
>


Im still messing with this, and it also seems I found streaming issues 
with the server side playlist VOD streams, as the stream keeps sticking 
and is really slow framed.

Would anyone be able to help me get the playlist repeating here is the 
code from the oflaDemo, however i cant seem to get the playlist to 
repeat no matter where i put it, ill assume the stream burst problem 
may get fixed but getting repeating might help me in a good direction 
on eventually building an xml based playlist class. It looks like I 
also have to get the length of the file to also send into the playlist 
? Sure I could call a method and get a list of files to add to a 
playlist and repeat on the client, but id like to replicate our current 
setup which is a server side unicast VOD playlist constantly running on 
the server, which one of the playlist nodes loads files from within a 
directory, and the second playlist node item loads a webcam broadcast 
:)

serverStream =
                                StreamUtils.createServerStream(appScope, 
"live11");
                        
                        SimplePlayItem item = new SimplePlayItem();
                        item.setStart(0);
                        item.setLength(10000);
                        item.setName("ness1");
                        serverStream.addItem(item);
                        item = new SimplePlayItem();
                        item.setStart(10000);
                        item.setLength(10000);
                        item.setName("on2_flash8_w_audio");
                        serverStream.addItem(item);
                        serverStream.setRepeat(true);
                        serverStream.start();

let me know.


_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to