HLS stream example

HTML

<div>
<video width="400" height="300" src="if(Hls.isSupported()) {
    var video = document.getElementById('video');
    var hls = new Hls();
    hls.loadSource('https://stream-us1-charlie.dropcam.com/nexus_aac/666ad62ba3a040e0942b0131062cf6e4/chunklist_w1414745769.m3u8');
    hls.attachMedia(video);
    hls.on(Hls.Events.MANIFEST_PARSED,function() {
      video.play();
  });
  }" autoplay="" controls=""></video>
</div>