Cubmap VR Video

VR videos using Cubemap rendering

This example demonstrates Cubemap 3 x 2 sides video texture support.

Cubemap video is tiled videos of the 6 faces of the camera. This is supposed to help with better rendering quality and reduced bandwidth.

To enable cubemap support enable the projection config to 360_CUBE

Facebook have been active with the Cubemap video rendering support and have produced an encoder filter for ffmpeg to convert to Cubemap from Equirectangular.

See more info at https://code.facebook.com/posts/1638767863078802/under-the-hood-building-360-video/

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

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