
not playing wowza stream on IE, mobile
I've scoured the support documentation on wowza and here, but i still can't find a solution. I have a free jw account, but before i purchase the full premium account, i would like to at least test to see if it works. regardless, i have the following configuration:
8 ip cameras streaming rtsp to wowza (v4). wowza confirmed that all streams connected and active. i can see them in the test player(s).
JW6 (cloud hosted version). Below is the code that i have added to my website. This works great in desktop Chrome, Firefox, Opera, Safari. NOT in internet explorer, android, or iOS. Any suggestions would be much appreciated.
<script src="http://jwpsrv.com/library/[jw_token].js"></script>
<div id='jw_player'></div>
<script type='text/javascript'>
jwplayer('jw_player').setup({
autostart: 'true',
primary: 'html5',
sources: [
{
file: 'rtmp://[wowza_server]:[wowza_port]/[wowza_application]/[wowza_streamname].stream'
},
{
file: 'http://[wowza_server]:[wowza_port]/[wowza_application]/[wowza_streamname].stream/playlist.m3u8'
},
]
});
</script>