Hi all,
I programmed a tour and there are two 360° Videos embedded, I simply took the code from the examples page, it worked perfectly fine before, but now it suddenly doesn't load anymore. It just stays black and says loading.... for a long time, so something seems to be happening that it won't load.
I would appreciate help!
Code
<scene name="videopano-motorbike" title="Motorbike 360° Video" onstart="" >
<!-- include the videoplayer plugin -->
<plugin name="video"
url.html5="plugins/videoplayer.js"
url.flash="plugins/videoplayer.swf"
pausedonstart="true"
loop="false"
volume="1.0"
onloaded="add_video_sources();"
/>
<!-- use the videoplayer plugin as panoramic image source -->
<image>
<sphere url="plugin:video" />
</image>
<!-- set the default view -->
<view hlookat="0" vlookat="0" fovtype="DFOV" fov="130" fovmin="75" fovmax="150" distortion="0.0" />
<action name="add_video_sources" >
videointerface_addsource('motorbike', '%FIRSTXML%/videos/KTM_360-Video_60mbits_60fps.mp4', '');
videointerface_play('motorbike');
</action>
</scene>
Display More
I call the scene via a click action:
Thanks in advance!