Skip to main content
Known Participant
January 3, 2013
Question

Server Side Playlist

  • January 3, 2013
  • 1 reply
  • 3431 views

Hello

I would like to ask for a FUNCTIONAL example of a server side playlist.

I try to follow many docs from adobe, but it's not clear, much different from wowza

I have a VOD service.

Inside media folder, a lot of videos FLV.

I wanna to create a channel, that will play a continuous playlist for example

movie1.flv

movie2.flv

movie3.flv

at ends, back to movie1.flv

How it works?

Thanks,

Rafael

This topic has been closed for replies.

1 reply

rafargbAuthor
Known Participant
January 4, 2013

Yes,

But doesn´t works ... the Adobe Documentation is very poor ... We pay $5000 USD for a software that nothing works in a simple way ...

Adobe Employee
January 4, 2013

application.onAppStart = function(){

    this.myStream = Stream.get("serverplaylist");

  this.myStream.play("movie1",0,-1,true );

  this.myStream.play("movie2", 0, -1, false);

  this.myStream.play("movie3", 0, -1, false);

  this.myStream.play("movie1",0,-1,false );

}

try above code and let me know what issue do you face. Its very simple code, we can tweak it further as per your use case.