Frequently Asked Questions

Is it possible to build a sequential playlist?

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();

https://github.com/Juliens/red5/blob/master/src/test/java/org/red5/server/stream/ServerStreamTest.java

For more information on VOD functions please see our blog.