server side playlist the url ?
first of all sry for my english.
I have a little problem with the server side playlist.
my application that looks like this:
application.allowDebug = true;
application.onAppStart = function(){
application.myStream = Stream.get("itv.flv");
if (application.myStream){
application.myStream.play("Spot1", 0, -1);
application.myStream.play("Spot2", 0, -1, false);
application.myStream.play("Spot3", 0, 30, false);
application.myStream.play("Spot4", 0, 7, false);
application.myStream.play("Spot5", 0, -1 false);
application.myStream.play("Spot6", 0, -1, false);
}
application.onAppStop = function(){
return false;
}
};
in adobe flash everything works. But i doent want to code a client side player. where i can find the stream url that i can paste it in for example : http://www.osmf.org/configurator/fmp/# ore can enter to my setup box ..
I have tried : rtmp://SERVERIP/APPNAME/INSTANSNAME/ but its not working..
plz help..
