Wowza + embedding player
I want embedding video in web page for desktop and mobile device.
My code is:
<div id="myElement">Loading the player...
<a href="rtsp://172.30.100.100:1935/vod/prova.mp4">Click here</a></div>
<script type="text/javascript">
jwplayer("myElement").setup({
sources: [
{
file: "rtmp://172.30.100.100:1935/vod/mp4:prova.mp4"
}
,{
file: "http://172.30.100.100:1935/vod/prova.mp4/playlist.m3u8"
}
],
rtmp: {
bufferlength: 3
},
fallback:false
});
</script>
This run on desktop device, ipad and iphone, but not on android phone. Why?