Greetings!
How to integrate Apple HLS streaiming into web-page frame, like in WOWZA test ?
Greetings!
How to integrate Apple HLS streaiming into web-page frame, like in WOWZA test ?
Hi
A very simple method (using JW Player)
<script src="http://jwpsrv.com/library/[i]yourjwplayerlink[/i].js"></script>
<div id="myElement"></div>
<script>
jwplayer("myElement").setup({
file: "http://example.com:1935/vod/mp4:sample.mp4/playlist.m3u8",
width: 640,
height: 360
});
</script>
Paste that into your HTML file. You would just need to modify line 1 to include a valid link to the JW Player js file (you can get one from the site linked) and obviously modify the URL to a valid website.