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
.
<div class="flex w-full">
<div id="fisheye" class=""></div>
</div>
<script type="text/javascript">
var player = flowplayer("#fisheye", {
"clip": {
"sources": [
{
"src": "//videos.electroteque.org/360/fisheye/fisheye.mp4",
"type": "video/mp4"
}
]
},
"share": false,
"vrvideo": {
"cameraLocation": "top",
"projection": "FISHEYE"
}
});
</script>