Stereoscopic 360 VR Video

Stereo 360 Rendered Video in monoscopic and VR

This example demonstrates confguring a rendered stereo top / bottom or side to side video. Either as monoscopic or in VR.

Left and right stereo can be configured with a projection config with 360_LR

Stereo Video

    
   <div class="flex w-full">
          <div id="stereo" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = flowplayer("#stereo", {
    "clip": {
        "sources": [
            {
                "src": "//videos.electroteque.org/360/stereo_demo.webm",
                "type": "video/webm"
            },
            {
                "src": "//videos.electroteque.org/360/stereo_demo.mp4",
                "type": "video/mp4"
            }
        ]
    },
    "share": false,
    "vrvideo": {
        "projection": "360_TB"
    }
});
  </script>