Live Edge Selection

Live edge source selection with fallback and round robin

}

Live Edge source selection and fallback. With pseudo load balancer round robin source selection features.

    
  <div class="flex flex-col w-full">
          <div id="liveedge" class=""></div>

  </div>
  <script type="text/javascript">
  	var player = flowplayer("#liveedge", {
    "live": true,
    "offline": {
        "autoreconnect": true,
        "failedSourceTime": 60,
        "fallbackResolver": true,
        "offline": "Offline",
        "reconnect": "Reconnecting In ",
        "reconnectTime": 30,
        "roundRobin": true
    },
    "src": [
        {
            "src": "https://videos.electroteque.org/hls/bigbuckbunny/playlist3.m3u8",
            "type": "application/x-mpegurl"
        },
        {
            "src": "https://videos.electroteque.org/hls/bigbuckbunny/playlist2.m3u8",
            "type": "application/x-mpegurl"
        },
        {
            "src": "https://videos.electroteque.org/hls/bigbuckbunny/playlist.m3u8",
            "type": "application/x-mpegurl"
        }
    ],
    "token": "eyJraWQiOiIyeHRpc0Q5NHZzTjIiLCJ0eXAiOiJKV1QiLCJhbGciOiJFUzI1NiJ9.eyJjIjoie1wiYWNsXCI6NixcImlkXCI6XCIyeHRpc0Q5NHZzTjJcIixcImRvbWFpblwiOltcImVsZWN0cm90ZXF1ZS5vcmdcIl19IiwiaXNzIjoiRmxvd3BsYXllciJ9.WLUkZHpDNoaXWDaFO2V5UfXm7SnDvE1pFAM0e7ppnFovOSyCCZM-b8gQNBSElB5yirTP__x76Qyo8pMWh6lVrw"
});
  </script>