Hmm ok it seems going through the emails this should work, so i dont have to give it a start and end, i re-encoded the flv file and is playing now, however if i uncomment the setRepeat method it cuts playing the current item around halfway and starts again. If i add some info to this method nothing happens it doesnt even get called, i was attempting to switch back to the item and play again.

public void streamPlaylistItemStop(IPlaylistSubscriberStream stream, IPlayItem item) {
       //stream.previousItem();
       //stream.play();
       log.info("Playlist Item Stopped");
   }


serverStream = StreamUtils.createServerStream(appScope, "live0");
           SimplePlayItem item = new SimplePlayItem();
item.setStart(-2);
           item.setLength(-1);
item.setName("file"); serverStream.addItem(item); //serverStream.setRepeat(true);
           serverStream.start();

Dan Rossi wrote:
Nope doesnt work i wrestled with it for ages, even running in the oflaDemo app, this causes the buffer to hang at around 99% and doesnt play. Im stuck in the mud now. What is the value of 10000 is that milliseconds or seconds ?

if (appScope == conn.getScope()) {
serverStream = StreamUtils.createServerStream(appScope, "live0");
            SimplePlayItem item = new SimplePlayItem();
            item.setStart(0);
            item.setLength(10000);
            item.setName("on2_flash8_w_audio");
            serverStream.addItem(item);
//            item = new SimplePlayItem();
//            item.setStart(20000);
//            item.setLength(10000);
//            item.setName("on2_flash8_w_audio");
//            serverStream.addItem(item);
            serverStream.start();
//            try {
//                serverStream.saveAs("aaa", false);
//                serverStream.saveAs("bbb", false);
//            } catch (Exception e) {}
        }


Dan Rossi wrote:
Hi it seems there is some maybe breakes on the VOD stream front ive been using as a rotating , right at the worst time too, this app is about to go live tommorow. I need to go back to using a server side playlist if its working yet ? However i need to somehow dynamically set the length of the stream or somehow obtain this info ie what do i put in if its 59.6 seconds ?

I need to also get the playlist rotating then somehow switch the playlist to the live publish name when a published broadcast has happened. let me know things are broken here, i thought it was my osx plugin not playing the video after its first run, its referring to this problem

http://jira.red5.org/browse/SN-12
------------------------------------------------------------------------

_______________________________________________
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

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

Reply via email to