QUESTION:
Is it possible to build a sequential playlist?
ANSWER:
Yes it is!
Building a Sequential Playlist:
This list sequentially plays each media in the order that they are added to the playlist. Below is some example code.
// Adding a playlist item to a server stream
SimplePlayItem item=SimplePlayItem.build("DarkKnight.flv");
serverStream.addItem(item);
serverStream.start();
For more information on VOD functions please see our blog.
0 Comments