I need to implement krpano virtual tour plugin for 360 videos, I have downloaded the js files, SWF files, XML file and added in HTML.js, XML and SWF files are not loading, I am not getting any error while executing project video playing as a normal HTML video. Can anyone help me for achieving this?
Thanks in advance.
here is my html file,
<script src="../assets/videoplayer.js"></script>
<script src="../assets/videoplayer_basic_source.js"></script>
<script>
embedpano({swf:"assets/krpano.swf",
xml:"assets/krpanoVt.xml",
target:"pano", html5:'auto',passQueryParameters:true});
</script>
<div id='loader' class='loading'></div>
<div id="panocontainer">
<div id="pano" style="width:100%; height:100%; position: absolute;">
<video id="videojs-panorama-player" class="video-js vjs-default-skin"
crossorigin="anonymous" controls preload="none">
<source src="https://yanwsh.github.io/videojs-panorama/assets/shark.mp4"
type='video/mp4'/>
</video>
</div>
</div>