Live Offline Noise

Live Offline plugin with animated noise background

Offline
Video Player is loading.
Current Time 0:00
Duration -:-
Loaded: 0%
Stream Type LIVE
Remaining Time 0:00
 
1x
    • Chapters
    • descriptions off, selected
    • captions off, selected

      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>