Live Stream Video Not Playing On Some Android Versions, HTML5 Video Not Found -


i working on website provides live streams.... using cdnsun services....i have used jwplayer, using flowplayer html5... have setup code through cdnsun section(how to).... live streams , other video files playing on pcs, maximum number of browsers, ios,galaxy s4 etc problem not playing on android versions 3-4...

my view code:

        <meta name="description" content="euro az channel live @ euroaz.tv">         <link rel="stylesheet"href=        "http://releases.flowplayer.org/5.5.2/skin/minimalist.css">         <style>             #mediaplayer {                 width: 100%;                 height: 100%;             }         </style>          <div id="mediaplayer"></div>          <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery      /1.8.2/jquery.min.js"></script>         <script type="text/javascript" src="http://releases.flowplayer.org/5.5.2/     flowplayer.min.js"></script>         <script type="text/javascript">             $(document).ready(function () {              $('#mediaplayer').flowplayer({              'live': true,              'rtmp': 'rtmp://837971203.r.cdnsun.net/837971203/_definst_',             'playlist': [[            {                               'flash': 'mystream'            },           {           'mpegurl': 'http://abcdspaceonelr.com/837971203/_definst_/mystream/playlist.m3u8'            }            ]],           'splash':true,           'poster': 'cover_image.jpeg',           'embed': false           });           });         </script> 

the error seeing again , again is

"html5:video not found" ,,, video playing fine except android phones....may flash problem,, don't know...

live stream here please if can help, time

i getting html5:video not found error on link provided when there's no flash plugin available (chrome on android 4.4.4!). reason insists play flash , doesn't fall hls url can played natively.

one thing embedding example reverse order of playlist items , put hls url first. according example on flowplayer docs in picking-order:

 playlist: [          // list of type-url mappings in picking order          [             { mpegurl: "http://example.com/video.m3u8" },             { webm:    "http://example.com/video.webm" },             { mp4:     "http://example.com/video.mp4" }          ]       ], 

anyway, should use hls supported (android 4.x, occasional hiccups depending on version). older devices might need rtp/rtsp.


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -