I've not been able to get this solved using any of the suggested fallbacks from multiple format. The answers given at the following post don't seem to work for me. video on demand streamin with jwplayer wowza android issue I've been trying to get the jwplayer to work both for android and iOS at the same time. My code is as follows:
<div id='playerBAenmNZAerlC'></div>
// Code to setup the jwplayer
<script type='text/javascript'>
jwplayer('playerBAenmNZAerlC').setup({
playlist: [{
sources: [{
file: 'rtsp://54.164.51.65:1935/vods3/_definst_/amazons3/tiger1000/test1.mp4'
},{
file: "http://54.164.51.65:1935/vods3/_definst_/mp4:amazons3/tiger1000/test1.mp4/playlist.m3u8"
}]
}],
image: '//www.longtailvideo.com/content/images/jw-player/lWMJeVvV-876.jpg',
fallback: false,
title: 'Bryan\'s Daughter',
width: '100%',
aspectratio: '16:9'
});
</script>
The above code works perfect for android devices, but it gives "Error while playing" on IOS devices. I've studied these links as well but couldn't get it work. You kind help would greatly be appreciated. http://support.jwplayer.com/customer/portal/articles/1430218-using-hls-streaming http://support.jwplayer.com/customer/portal/questions/5496622-streaming-on-android
You'll want "fallback" set to "true".
This code