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
<div class="flex w-full h-auto my-auto">
<div id="stereo" class=""></div>
</div>
<script type="text/javascript">
var player = jwplayer("stereo").setup({
"aspectratio": "16:9",
"playbackRateControls": true,
"plugins": {
"../../js/vrvideo-8.20.0.js": {
"projection": "360_TB"
}
},
"sources": [
{
"file": "//videos.electroteque.org/360/stereo_demo.webm",
"type": "video/webm"
},
{
"file": "//videos.electroteque.org/360/stereo_demo.mp4",
"type": "video/mp4"
}
],
"width": "100%"
});
</script>