Did you move just tour.xml or the whole folder?
Beiträge von Enderr
-
-
Working fine on my Android with Chrome version 65.
-
When you take a pano, is the ath set to 0 at the beginning point of when the panorama was taken? If it is, maybe you could simply take the video at the exact same position just before you take the pano, and then set the ath and (maybe) atv to 0 and it would seamlessly line up with the pano.
-
Hmm yeah that is interesting.
After reading some more, I suspect you might be able to replicate the Panotour way by doing the same or similar to what you suggested: adding a partial video sphere as a distorted hotspot and lining it up with the pano perfectly, but I'm out of my depth here. I'm not a photographer, just a web developer.
Interested to learn more. -
Partial pano's are supported for pano's that are single-res, not multi-res.
I'm not sure for video. Give it a try.
-
By using the video player plugin and adding the video as panoramic image code to your XML.
Code
Alles anzeigen<plugin name="video" url.flash="videoplayer.swf" url.html5="videoplayer.js" videourl="video.m4v|video.webm" posterurl="videoposter.jpg" panovideo="true" pausedonstart="false" loop="false" volume="1.0" onvideoready="" onvideoplay="" onvideopaused="" onvideocomplete="" onerror="" /> <image hfov="360" vfov="180"> <sphere url="plugin:video" /> </image>
-
Thank you!
This works very well. -
Thank you very much for the Krpano side menu plugin! I've been using it in a recent project, and would like to get some animation going with the opening and closing of the menu. I'm wondering if you could give me some advice on how to get this going.
I've tried using the tween function to animate the width of menu_settings.background_width in the slide_menu_right and slide_menu_left actions. I know that there is probably much more involved with the process of animating this menu (or I'm not on the right track at all), but I'm a beginner to Krpano, and so am experimenting with what I can.Below is an example of my use of the tween function:
Zitat<action name="slide_menu_left">
tween(menu_settings.background_width, 0, 2);
set(new_x,get(menu_settings.background_width));mul(new_x,-1);set(plugin[menu_background].x,get(new_x));delayedcall(0.1,set(plugin[btn_menu].visible,true););
</action>