# wowza \> jw player not working on mobile, Internet Explorer

**URL:** https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972
**Category:** Wowza Streaming Engine
**Tags:** media-players-and-devices
**Created:** [May 7, 2014, 3:16pm UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972 "2014-05-07T15:16:55Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![Graham\_White](https://avatars.discourse-cdn.com/v4/letter/g/ec9cab/32.png) [@Graham\_White](https://community.wowza.com/u/Graham_White)
#### Post date: [May 7, 2014, 3:16pm UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972/1 "2014-05-07T15:16:55Z")

</div>

Howdy - pretty happy how far i’ve gotten so quickly in getting our Axis IP cameras to be streaming nicely through Wowza & JW Player.

However, it only works on Webkit & Mozilla browsers (Chrome, Firefox, Safari, Opera).

It does not work on any mobile device, (Android or iOS), either. Here are my settings:

We have 8 cameras, all setup via stream files

rtsp://[username]:[password]@[camera\_ip]:[camera\_port]/axis-media/media.amp?videocodec=h264

everything in Wowza looks great - all streams marked as active and i can see them in the test players.

Here is my jw player code that i put on our website:

```auto
<script src='http://jwpsrv.com/library/[random trial key].js'></script>
<div style='margin:0 auto; width: 480px;'>
    <div id='jw_player'></div>
</div>
<script type='text/javascript'>
jwplayer('jw_player').setup({
    autostart: 'true', 
    sources: [{ 
        file: 'rtmp://[wowza ip address]:1935/[application]/[stream_name].stream'
    },]
});
</script>

```

Again - this works perfectly in Chrome, Firefox, opera and Safari, but not on my mobile or Internet Explorer.

The stream works if I pull up the Live Video Streaming page in IE: [https://www.wowza.com/resources/3.6.0/examples/LiveVideoStreaming/FlashRTMPPlayer/player.html](https://www.wowza.com/resources/3.6.0/examples/LiveVideoStreaming/FlashRTMPPlayer/player.html) and connect to my wowza server.

Also, i get a stream if I dial in the rtsp:// link (I find this on the Mobile tab of the test browsers in the web UI) directly on my android device.

But nothing through the jw player. I get a “Error loading player: No playable sources found” error message.

Is the trial version of jw player limited in any way? And what are my options other than jw player? Can I embed the stream on all these browsers and devices another (less expensive) way?

Thanks in advance,

gw

---

<div class="post-metadata">

### Author: ![Tim\_Dougherty](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/tim_dougherty/32/596_2.png) [@Tim\_Dougherty](https://community.wowza.com/u/Tim_Dougherty)
#### Post date: [May 7, 2014, 12:32pm UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972/2 "2014-05-07T12:32:47Z")

</div>

Hi Graham,

It looks like you need to add an HLS/HTML5 configuration to your JW Player. Take a look at this article, which explains the setup:

[**How to use JW Player with Wowza Streaming Engine**](https://www.wowza.com/docs/how-to-use-jw-player-with-wowza-streaming-engine)

In particular, note the code example under “ **Simple RTMP and Apple HLS streaming**.”

-Tim

---

<div class="post-metadata">

### Author: ![Tim\_Dougherty](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/tim_dougherty/32/596_2.png) [@Tim\_Dougherty](https://community.wowza.com/u/Tim_Dougherty)
#### Post date: [May 8, 2014, 7:33am UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972/3 "2014-05-08T07:33:48Z")

</div>

Graham,

Live and VOD playback is very similar. This is how the JW Player code will look for a live stream:

```auto
<body>
<div id="player"><a href="rtsp://[wowza-ip-address]:1935/live/myStream">RTSP Link</a></div>
<script type="text/javascript">
	jwplayer("player").setup({
		sources: [{
			file: "rtmp://[wowza-ip-address]:1935/live/myStream"
		},{
			file: "http://[wowza-ip-address]:1935/live/myStream/playlist.m3u8"
		}],
		rtmp: {
			bufferlength: 3
		},
		fallback: false
	});
</script>
</body>

```

Be sure that you have a functional, live stream coming from Wowza that will stream in our [test RTMP player](https://www.wowza.com/resources/3.6.0/examples/LiveVideoStreaming/FlashRTMPPlayer/player.html) and an iOS device.

-Tim

---

<div class="post-metadata">

### Author: ![Tim\_Dougherty](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/tim_dougherty/32/596_2.png) [@Tim\_Dougherty](https://community.wowza.com/u/Tim_Dougherty)
#### Post date: [May 8, 2014, 8:39am UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972/4 "2014-05-08T08:39:51Z")

</div>

Graham,

Excellent progress. Thank you for the update.

-Tim

---

<div class="post-metadata">

### Author: ![Graham\_White](https://avatars.discourse-cdn.com/v4/letter/g/ec9cab/32.png) [@Graham\_White](https://community.wowza.com/u/Graham_White)
#### Post date: [May 7, 2014, 3:49pm UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972/5 "2014-05-07T15:49:48Z")

</div>

> Hi Graham,
> 
> It looks like you need to add an HLS/HTML5 configuration to your JW Player. Take a look at this article, which explains the setup:
> 
> [**How to use JW Player with Wowza Streaming Engine**](https://www.wowza.com/docs/how-to-use-jw-player-with-wowza-streaming-engine)
> 
> In particular, note the code example under “ **Simple RTMP and Apple HLS streaming**.”
> 
> -Tim

thanks for the quick reply, Tim.

Seen this page many times, but that section refers to VOD only. how do i change/massage those links to refer to my live streams?

Thanks again.

gw

---

<div class="post-metadata">

### Author: ![Graham\_White](https://avatars.discourse-cdn.com/v4/letter/g/ec9cab/32.png) [@Graham\_White](https://community.wowza.com/u/Graham_White)
#### Post date: [May 8, 2014, 10:25am UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972/6 "2014-05-08T10:25:20Z")

</div>

Bump!

Can anyone help with this?

TIA, gw

---

<div class="post-metadata">

### Author: ![Graham\_White](https://avatars.discourse-cdn.com/v4/letter/g/ec9cab/32.png) [@Graham\_White](https://community.wowza.com/u/Graham_White)
#### Post date: [May 8, 2014, 10:54am UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972/7 "2014-05-08T10:54:00Z")

</div>

OK great - thanks Tim. I now have it working on iOS devices. Still nothing on IE or Android.

Correction: both IE and Android do provide the link to the rtsp stream.

Clicking on that link streams properly on Android. IE gives me an error.

Viewing my stream via the test RTMP player works in IE, but still nothing through JW Player. Frustrating.

Thanks again much appreciated,

gw

---

<div class="post-metadata">

### Author: ![Graham\_White](https://avatars.discourse-cdn.com/v4/letter/g/ec9cab/32.png) [@Graham\_White](https://community.wowza.com/u/Graham_White)
#### Post date: [May 8, 2014, 11:24am UTC](https://community.wowza.com/t/wowza-jw-player-not-working-on-mobile-internet-explorer/42972/8 "2014-05-08T11:24:57Z")

</div>

UPDATE - turns out i was using Flash v11. Which i guess does not work with JW6. Updated flash to v13 and looks like we are fully good to go.

Thanks again, Tim.
