Chromecast HLS

Casting with HLS streams

Demonstrate casting with HLS streams.

    
   <div class="flex w-full">
          <div id="hls" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#hls", {
    "chromecast": {
        "castAppID": "5C78621A",
        "debug": true
    },
    "clip": {
        "castInfo": {
            "artwork": [
                {
                    "sizes": "128x128",
                    "src": "images/stills/bbb_128x128.png",
                    "type": "image/png"
                },
                {
                    "sizes": "512x512",
                    "src": "images/stills/bbb_512x512.png",
                    "type": "image/png"
                }
            ],
            "images": [
                {
                    "url": "http://192.168.5.25:8000/plugins//flowplayer/flowplayer7/chromecast/images/stills/bbb_still.png"
                }
            ],
            "subtitle": "Subtitle",
            "title": "Big Buck Bunny"
        },
        "sources": [
            {
                "src": "https://videos.electroteque.org/hls/bigbuckbunny/playlist.m3u8",
                "type": "application/x-mpegurl"
            }
        ]
    },
    "share": false
});
  </script>