Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
![]() |
Source code |
1 2 3 4 5 6 |
<scene name="scene_1" title="heli" onstart="ChangeVideoScene(heli);" > <view hlookat="0" vlookat="0" fov="90" fovmin="60" fovmax="110" limitview="on" /> <image> <sphere url="plugin:video" /> </image> </scene> |
![]() |
Source code |
1 2 3 4 5 6 |
<action name="ChangeVideoScene" devices="desktop"> set(plugin[video].posterurl, calc:'video/%1-2k-poster.jpg'); plugin[video].playvideo(video/%1-2k.mp4|video/%1-2k.webm); </action> |
This post has been edited 1 times, last edit by "Tuur" (May 11th 2016, 9:49pm)
![]() |
Source code |
1 2 |
<action name="videointerface_avenue_view"> set(plugin[video].posterurl, calc:'video/union-2k-poster.jpg'); plugin[video].playvideo(video/union-2k.mp4|video/union-2k.webm); </action> |
Location: Netherlands
Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer
This post has been edited 1 times, last edit by "Tuur" (May 13th 2016, 7:10pm)
PanoVideo Creator allows to create this menu in video tours. Simply select option"include preview navigation"I'm trying to create a tour with multiple 360 video scenes. I'd like to create a scene menu similar to this example from the examples page
http://krpano.com/examples/119/krpano.ht…-corfu/tour.xml.
![]() |
Source code |
1 |
<scene name="video_scene" title="" onstart="ChangeVideoScene(video);" > <view hlookat="0" vlookat="0" fov="90" fovmin="60" fovmax="110" limitview="on" /> <image> <sphere url="plugin:video" /> </image> </scene> <scene name="video_scene2" title="" onstart="ChangeVideoScene(video-orig);" > <view hlookat="0" vlookat="0" fov="90" fovmin="60" fovmax="110" limitview="on" /> <image> <sphere url="plugin:video" /> </image> </scene> <action name="ChangeVideoScene" devices="desktop"> set(plugin[video].videourl.no-ios, calc:examples/webvr/%1/video-1920x960.mp4|%1/video-1920x960.webm); set(plugin[video].videourl.ios, calc:examples/webvr/%1/video-1024x512.mp4); plugin[video].playvideo(examples/webvr/%1/video-1920x960.mp4|examples/webvr/%1/video-1920x960.webm, examples/webvr/%1/video-1024x512.mp4); </action> |
This post has been edited 1 times, last edit by "surfermedina" (Nov 18th 2016, 11:58pm)
Hi!I'm trying to create a tour with multiple 360 video scenes. I'd like to create a scene menu similar to this example from the examples page