Yet another installment in the never-ending series of dealing with different platforms. This is precipitated by the continued boneheadedness of Google when it comes to supporting any live streaming transports in the native browser (they just simply don’t). Some handset manufacturers are adding HLS support back, though.
You’ll notice there’s also code in here to reference an MPEG-DASH manifest as well as “sanjose” and “smooth” (in Wowza parlance). This script doesn’t make use of those capabilities at the moment, but once I get a good list of which browsers can support MSE and DASH.js, I’ll update it to be able to use that player.
This assumes that you’re using cloud-hosted JW Player with a key, but if you’re not, simply replace the first SCRIPT reference with your locally hosted JWPlayer file and comment out the jwplayer.key line.
If you wish to use a different player such as FlowPlayer, you can replace the appropriate code in the flashPlayer() function.
<HTML> <HEAD> <TITLE>Player</TITLE> <script type="text/javascript" src="http://p.jwpcdn.com/6/8/jwplayer.js?ver=3.9"></script> <script type="text/javascript"> jwplayer.key='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'; jwplayer.defaults = { "ph": 2 }; </script> </HEAD> <BODY STYLE="margin: 0px; background-color: white"> <div id="videoframe"></div> <SCRIPT type="text/javascript"> // Browser-aware video player for JW Player and Wowza // V0.3 - May 19, 2014 // (c)2014 Ian Beyer // Released under the GPL var container='videoframe'; var width="100%"; var aspect="4:3"; //This section calculates actual sizes for player when using non-responsive elements. var multiplier=aspect.split(":"); var fixedwidth = Math.floor(window.innerWidth*width.split("%")[0]/100); var fixedheight = Math.floor(window.innerWidth*multiplier[1]/multiplier[0]*width.split("%")[0]/100); console.log ('Size: '+width+', '+aspect+' ('+fixedwidth+' x '+fixedheight+')'); var streamserver='wowzanode1.tvwmedia.net'; var streamport='1935'; var streamapp='srcEncoders'; var streamname='TVW01'; var streambase=streamserver+':'+streamport+'/'+streamapp+'/_definst_/'+streamname; var cupertinourl='http://'+streambase+'/playlist.m3u8'; var sanjoseurl='http://'+streambase+'/Manifest.f4m'; var smoothurl='http://'+streambase+'/Manifest'; var dashurl='http://'+streambase+'/manifest.mpd'; var rtmpurl='rtmp://'+streambase; var rtspurl='rtsp://'+streambase; var agent=navigator.userAgent.toLowerCase(); var is_iphone = (agent.indexOf('iphone')!=-1); var is_ipad = (agent.indexOf('ipad')!=-1); var is_ipod = (agent.indexOf('ipod')!=-1); var is_safari = (agent.indexOf('safari')!=-1); var is_iemobile = (agent.indexOf('iemobile')!=-1); var is_blackberry = (agent.indexOf('blackberry')!=-1); var is_android1= (agent.indexOf('android\ 1')!=-1); var is_android2= (agent.indexOf('android\ 2')!=-1); var is_android3= (agent.indexOf('android\ 3')!=-1); var is_android4 = (agent.indexOf('android\ 4')!=-1); var is_chrome = (agent.indexOf('chrome')!=-1); if (is_iphone) { iosPlayer(); } else if (is_ipad) { iosPlayer(); } else if (is_ipod) { iosPlayer(); } else if (is_android1) { rtspPlayer(); } else if (is_android2) { rtspPlayer(); } else if (is_android4) { a4Player(); } else if (is_blackberry) { rtspPlayer(); } else if (is_iemobile) { rtspPlayer(); } else { flashPlayer(); } function iosPlayer() { var player=document.getElementById(container) player.innerHTML='<VIDEO '+ ' SRC="'+cupertinourl+'"'+ ' HEIGHT="'+fixedheight+'"'+ ' WIDTH="'+fixedwidth+'"'+ ' poster="poster.png"'+ ' title="Live Stream"'+ ' CONTROLS>'+ '</video>'; } function windowsPlayer() { // Need to add code here for silverlight player in Windows Phone to support the 12 users that actually have one. Until then use rtspPlayer(); } function a4Player() { var player=document.getElementById(container) player.innerHTML='<A HREF="'+cupertinourl+'">'+ '<IMG SRC="player.png" '+ 'ALT="Start Mobile Video" '+ 'BORDER="1" '+ 'WIDTH="'+width+'">'+ '</A>'; } function dashPlayer() { // Reserved for future use } function rtspPlayer() { var player=document.getElementById(container) player.innerHTML='<A HREF="'+rtspurl+'">'+ '<IMG SRC="player.png" '+ 'ALT="Start Mobile Video" '+ 'BORDER="0" '+ 'WIDTH="'+width+'">'+ '</A>'; } function flashPlayer() { //If using JW6 Premium or Enterprise, you can also use the cupertinourl here. jwplayer(container).setup({ width: width, aspectratio: aspect, file: rtmpurl, autostart: false }); } </SCRIPT> </BODY> </HTML>
Ian, thanks so much for writing and maintaining these scripts. I was wondering if this was supposed to be combined with the earlier scripts to get stream checking, or was that dropped because the IE support was too unreliable?
Ian, I was browsing your blog today and saw this post from last April. quite a few people must have used this code for testing since I noticed you used one of my live streams for the test in the blog.. this explains some of the anomalies in the wowza logs! Thanks for the bump in stats on this stream hehe 🙂 hope all is well with you and yours.
I tried using this but all I get is a blank page
Nevermind – If referenced the player wrong, but now:
All I get is Error loading player: Could not load player configuration
I am trying this by just double clicking the file on my computer, it is not on a webserver at the moment.
Any ideas why this will not work for me?