HTML5 / Streaming with jwplayer - suddenly stopped working for iPad?
Hey guys I have a streaming video from a webcam that our users recently said had stopped working on an iPad. I can't figure out for the life of me what the heck is going on. I rebuilt the code even just to make sure. I think I just need a second set of eyes, does anyone see anything obviously wrong here? (I edited out the location of the servers, sorry boys and girls I would share if I could, besides it's really not very interesting) Thx
Code:
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {margin:0px;padding:0px;width:100%;}
</style>
</head>
<body>
<script type='text/javascript' src="jwplayer.js"></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
jwplayer('mediaspace').setup({
'file': 'xxxxx.xxxxx',
'image': 'http://xxxxx.xxxxx.com/xxxxx/xxxxx.png',
'streamer': 'rtmp://xxxxx.xxxxx.com:80/xxxxx',
'controlbar': 'bottom',
'width': '581',
'height': '350',
'autoplay': 'true',
'modes' : [
{type: 'flash', src: 'http://xxxxx.xxxxx.com/xxxxx//xxxxx/player.swf'},
{type: 'html5', config: {
'file': 'http://xxxxx.xxxxx.com:80/xxxxx/xxxxx/playlist.m3u8',
'provider': 'http',
'controlbar': 'none'
}
}
]
});
</script>
</body>
</html>
Thanks in advance.