Live Offline Noise

Live Offline plugin with animated noise background

This example demonstrates confguring within a TV Noise effect.

    <div class="flex w-full h-auto my-auto">
          <div id="noise" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = jwplayer("noise").setup({
    "aspectratio": "16:9",
    "playbackRateControls": true,
    "plugins": {
        "../../js/liveoffline-8.1.0.js": {
            "autoreconnect": true,
            "noise": true,
            "offline": "Offline",
            "reconnect": "Reconnecting In ",
            "reconnectTime": 30
        }
    },
    "sources": [
        {
            "file": "//videos.electroteque.org/bitrate/big_buck_bunny_6001k.webm",
            "type": "video/webm"
        }
    ],
    "width": "100%"
});
  </script>