This example demonstrates confguring a rendered stereo top / bottom or side to side video. Either as monoscopic or in VR.
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 stereo video with projection set to 360_TB or 360_LR
<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>