Fisheye Video

180° Fisheye Rendered Video

This example demonstrates rendering dewarped Fisheye 180° videos. Dual fisheye to 360° is supported also.

Side to side is the default configuration which can be changed to top and bottom with sidetoside: false

The clip config is required to be configured as a fish video with projection set to FISHEYE or DUAL_FISH.

The camera location needs to be set to either top or bottom using the config cameraLocation.

Fisheye Video

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

  </div>
  <script type="text/javascript">
  	var player = flowplayer("#fisheye", {
    "ratio": "16:9",
    "src": [
        {
            "src": "//videos.electroteque.org/360/fisheye/fisheye.mp4",
            "type": "video/mp4"
        }
    ],
    "token": "eyJraWQiOiIyeHRpc0Q5NHZzTjIiLCJ0eXAiOiJKV1QiLCJhbGciOiJFUzI1NiJ9.eyJjIjoie1wiYWNsXCI6NixcImlkXCI6XCIyeHRpc0Q5NHZzTjJcIixcImRvbWFpblwiOltcImVsZWN0cm90ZXF1ZS5vcmdcIl19IiwiaXNzIjoiRmxvd3BsYXllciJ9.WLUkZHpDNoaXWDaFO2V5UfXm7SnDvE1pFAM0e7ppnFovOSyCCZM-b8gQNBSElB5yirTP__x76Qyo8pMWh6lVrw",
    "vrvideo": {
        "cameraLocation": "top",
        "projection": "FISHEYE"
    }
});
  </script>