Skip to main content
Participant
May 6, 2009
Question

How to create a Playlist in flash Streaming Server

  • May 6, 2009
  • 1 reply
  • 927 views

Hi all,

        am new in the flash streaming server. I download the Flash streaming server and install it its work fine.

I want know about the following question:

          how to stream the video using playlist?

          What is the format of the playlist?

          can i create a playlist from visual studio.Net and pass the value to the player?

awaiting your reply,

Thanks in advance.

    This topic has been closed for replies.

    1 reply

    Participating Frequently
    August 7, 2010

    If you have bought Streaming Server License - you want to be able to create any server-side playlists as you cannot write you own customized code on Streaming Server.

    However what you can do is create client-side playlist using client-side code, place all your files in media folder of VOD and use them in your playlist. Playlist is nothing but set of plays which are queued up so you just need to issue NetStream plays with last parameter "reset" set to false - this is so that you do not reset your previous play.

    So it would be like

    ns.play("abc",0,20,true);

    ns.play("xyz",0,30,false);

    ns.play("uvw",0,20,false);