
Live Streaming to Desktops & Mobile
Hello,
I have Premium licance and I want to stream IOS & Android devices also. For desktops its working fine.
I have configured RTMP & HLS for that desktop users are getting video via RTMP but android or IOS people cant see any video from the player. my current code in the web like below.
Is there anything that I doing wrong ?
<div class="col-md-3">
<div class="" id="tv" style="width:100%;display:inline-block;">
<div id='xxxxxxx'></div>
<script type='text/javascript'>
jwplayer('pxxxxx').setup({
sources: [
{ file: "rtmp://5.135.218.26:1935/live/myStream" },
{ file: "http://5.135.218.26:1935/live/myStream/playlist.m3u8" },
],
rtmp: { bufferlength: 0.1 },
fallback: "true",
primary:"flash",
width: "100%",
wmode: "transparent",
androidhls: "true",
controls: "false",
autostart: "true",
});
</script>