Live Offline TV Noise

Live Offline plugin with animated noise background

This example demonstrates confguring within a TV Noise effect.

    
   <div class="flex w-full">
          <div id="noise" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#noise", {
    "clip": {
        "live": true,
        "sources": [
            {
                "src": "//videos.electroteque.org/bitrate/big_buck_bunny_6001k.webm",
                "type": "video/webm"
            }
        ]
    },
    "offline": {
        "autoreconnect": true,
        "noise": true,
        "offline": "Offline",
        "reconnect": "Reconnecting In ",
        "reconnectTime": 30
    },
    "share": false
});
  </script>