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">
      <video class="video-js vjs-default-skin vjs-fluid " crossorigin="anonymous" controls="" id="noise"></video>
  </div>
  <script type="text/javascript">
  	var player = videojs("noise", {
    "live": true,
    "liveui": true,
    "plugins": {
        "liveoffline": {
            "autoreconnect": true,
            "noise": true,
            "offline": "Offline",
            "reconnect": "Reconnecting In ",
            "reconnectTime": 30
        }
    },
    "sources": [
        {
            "src": "//videos.electroteque.org/bitrate/big_buck_bunny_6001k.webm",
            "type": "video/webm"
        }
    ]
});
  </script>