Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

how to play streaming from wowza (play on any device)


Hi.

My company have purchase JW Player PREMIUM (Version 7).
On production page current support rtmp and hls (see in below) how to add mpeg dash stream for single page display on any device.

Thank you.

<!-- html code -->

.
<script type="text/javascript">
jwplayer("live_player").setup({
logo: {
file: '/images/logo-stream.png',
link: 'https://localhost/'
},

skin : 'six',
image: '/images/live-720.jpg',

sources: [{
file: "http://localhost/Application/smil:{$channel}/manifest.f4m"
},{
file: "http://localhost/Application/smil:{$channel}/playlist.m3u8"
}],
rtmp: {
bufferlength: 3
},
fallback: false,
width: "100%",
aspectratio: "16:9",
});

jwplayer("live_player").onMeta(function(event){
if(event.metadata.bandwidth) {
var html = 'bandwidth: '+event.metadata.bandwidth;
html += ', screenwidth: '+ event.metadata.screenwidth;
html += ', qualitylevel: '+event.metadata.qualitylevel;
html += ', transitioning: '+event.metadata.transitioning;
html += ', bufferfill: '+event.metadata.bufferfill;
document.getElementById('abr').innerHTML = html;
}
});
</script>
<!-- html code -->

3 Community Answers

mark

User  
1 rated :

dash: 'true" needs to be added

Todd

JW Player Support Agent  
1 rated :

Please see our documentation at http://support.jwplayer.com/customer/portal/articles/2020483-using-dash-streaming regarding the correct method to embed a DASH video with JW 7.

Please note that our player does not directly support your HDS .f4m stream.

kody

User  
0 rated :

I have a question regarding this as well.

Do you recommend setting up MPEG Dash as the primary source with HLS as the fallback. We are upgrading to JW7 in an effort to support more devices and solve issues with our live video. One player we are having difficulties with at the moment is Android 4.4.2.

Also does JW have a master compatibility matrix where it shows all browser's and mobile device's supported by stream type?

Thanks

This question has received the maximum number of answers.