# Wowza HTML 5 streaming

**URL:** https://community.wowza.com/t/wowza-html-5-streaming/45734
**Category:** Wowza Streaming Engine
**Created:** [July 27, 2015, 7:44am UTC](https://community.wowza.com/t/wowza-html-5-streaming/45734 "2015-07-27T07:44:18Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Matthias\_Trip](https://avatars.discourse-cdn.com/v4/letter/m/34f0e0/32.png) [@Matthias\_Trip](https://community.wowza.com/u/Matthias_Trip)
#### Post date: [July 27, 2015, 7:44am UTC](https://community.wowza.com/t/wowza-html-5-streaming/45734/1 "2015-07-27T07:44:18Z")

</div>

Hi all,

We’re currently in the process of moving from a Flash player to HTML 5. We use Wowza to stream VOD using RTMP (for “normal” browsers) and HLS (for iOS and Android).

Both protocols are not supported by the HTML 5 element, so we decided to use Apache to serve the files. This works, but requires _a lot_ more bandwidth as the browser seems to download the _entire_ file instead of only buffering a small part.

I know HLS is an option, but this is only natively supported on iOS and Safari. HLS requires an Flash plugin to work on other browsers, which is not what we want.

Is there any way to stream MP4 (or Webm) files using Wowza to HTML 5 clients?

Thanks in advance!

---

<div class="post-metadata">

### Author: ![sal\_jefferson](https://avatars.discourse-cdn.com/v4/letter/s/6de8d8/32.png) [@sal\_jefferson](https://community.wowza.com/u/sal_jefferson)
#### Post date: [July 27, 2015, 11:47am UTC](https://community.wowza.com/t/wowza-html-5-streaming/45734/2 "2015-07-27T11:47:03Z")

</div>

Hi,

HTML 5 video playback is possible using the [Safari web browser](http://www.apple.com/safari/) on iOS and Mac OS X. I’ve seen it work on other browsers, but not reliably. You can try it yourself by inserting this code into an HTML page and referencing an HLS stream from your Wowza server, as an example:

```auto
<html>
  <head> 
    <title>HTML 5 Test</title> 
  </head> 
  <body> 
    <video width="640" height="400" controls="controls" src="http://[wowza-ip-address]:1935/live/myStream/playlist.m3u8">
    </video> 
  </body> 
</html>

```

You may also want to take a look at the player offing from [JW Player](http://www.jwplayer.com/), which uses Apple HLS/HTML 5 and RTMP/Flash, depending on the platform. It a great solution.

Also, newer versions of Android support HLS

Regards,

Salvadore
