Wowza Community

How to re-stream video from an IP camera to HTML 5 video tag

I read this article and got the live streamtype working and the rtp-live streamtype working, and for the ‘live’ stream type there are a few different stream types that are provided, but I do not see one that can be used for a html5

Cupertino playback is covered in that tutorial. You can do this:

<html>
<head> 
  <title>Cupertino Streaming</title>
</head>
<body>
<video controls src="http://[wowza-address]:1935/live/camera.stream/playlist.m3u8">
</video>
</body>
</html>

Richard