Results 1 to 10 of 10

Thread: need help to stream vod

Hybrid View

  1. #1

    Default need help to stream vod

    Hello,

    I hope I'm gonna be precise and explain as good as possible "what i want to do".

    I'am in a configuration "Liverepater-origin" <-----> "live repater-edge", i'm using so an application to deliver live stream.

    I want to be able to stream vod files but using the same application (with liverepeater- stream type) !

    I know it's a strange request but as we customized a bit wowza install we really need an intelligent way r a tips to stream vod over this streamtype configuration.

    Could you guys help me ?

    Thx by advance,

    Regards,

  2. #2

    Default

    Do you mean you want to publish vod files as a live stream? If so you can use our server-side publishing system:

    http://www.wowzamedia.com/forums/showthread.php?t=7094

    You can then stream the result using the live repeater.

    Charlie

  3. #3

    Default

    No, I'm looking for the way to publish live and vod with the same application.xml...

    However your answer is very interesting,

    Thx by advance for your answers.

    Regards,

  4. #4
    Join Date
    Dec 2007
    Posts
    25,683

    Default

    You can switch StreamType per NetStream in the client:

    If the Application.xml /StreamType is "default" you can stream live like this:

    Code:
    netconnection.call("setStreamType",null,"live");
    var nsLive:NetStream = new NetStream(netconnection);
    Richard

  5. #5

    Default

    Hi,

    Can you tell me more about this, i don't understand...
    With this I will be able to deliver vod and live events using the same applications.xml ?

    Is that modification bring to any limitations ?

    Regards,
    Last edited by barichon; 04-27-2010 at 02:42 PM.

  6. #6
    Join Date
    Dec 2007
    Posts
    25,683

    Default

    If you have an application named "vod" with StreamType "default", and you use it to stream static content, for example like this:

    Code:
    netconnection.connect("rtmp://[wowza-address]:1935/vod");
    var nsVOD:NetStream = new NetStream(netconnection);
    nsVod.play("Extremists.flv");
    You can use also use this application to stream to "publish live and vod with the same application.xml"

    Code:
    netconnection.call("setStreamType",null,"live");
    var nsLive:NetStream = new NetStream(netconnection);
    Note that you call setStreamType using the netconnection before you use that netconnection to create a new NetStream.

    Richard

  7. #7

    Default

    Quote Originally Posted by charlie View Post
    Do you mean you want to publish vod files as a live stream? If so you can use our server-side publishing system:

    http://www.wowzamedia.com/forums/showthread.php?t=7094

    You can then stream the result using the live repeater.

    Charlie
    I am interested in this Charlie, but the link is broken. Can you post the link to the article you are talking about?

    Thanks,

    Manuel.-

  8. #8
    Join Date
    Dec 2007
    Posts
    25,683

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •