I'm using http://flowplayer.org/plugins/streaming/bwcheck.html for dynamic bitrate switching on VoD without any problem but I can't get flowplayer or jwplayer working with live streams.

Does anyone have any foolproof code examples please for ANY player working with Wowza?

Edit:

I add live: true and change the stream names to stream_1 etc in the example above but just get a stream doesn't exist error.

Thank you.

link|improve this question

67% accept rate
Perhaps you could explain the exact issue you're having with jwplayer/flowplayer? – Mark Henderson Dec 19 '11 at 2:40
feedback

migrated from serverfault.com Dec 19 '11 at 2:40

This question came from our site for system administrators and desktop support professionals.

1 Answer

There are a few ways of doing this in JWplayer. One is client-side with levels:

<div id="container">Loading the player...</div>

<script type="text/javascript">
    jwplayer("container").setup({
        flashplayer: "/jwplayer/player.swf",
            height: 270,
            width: 480,
            image: "/thumbs/video.jpg",
            levels: [
                { bitrate: 300, file: "videos/video_300k.mp4", width: 320 },
                { bitrate: 600, file: "videos/video_600k.mp4", width: 480 },
                { bitrate: 900, file: "videos/video_900k.mp4", width: 720 }
            ],
            provider: "rtmp",
            streamer: "rtmp://rtmp.example.com/application/"
    });
</script>

The other is using a server-side RSS. As of Patch 8, Wowza V3 will generate an RSS file based on a smil file (like you'd use for adaptive bitrate switching for iOS) or an ngrp (generated by the Wowza V3 transcoder). The URLs you'd use are:

http://[wowza-ip-address]:1935/[application]/smil:[streamName].smil/jwplayer.rss - JWPlayer adaptive streaming

http://[wowza-ip-address]:1935/[application]/ngrp:[streamName]/jwplayer.rss - JWPlayer adaptive streaming

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.