Great! Now it works. Thank you Klaus & Tuur
Posts by Birdseye
-
-
I'm making a Vtour about a construction site where I create a new aerial 360 every x days, in order to track the evolution of the works.
http://www.strekdamwest.beI would like to add the possibility that visitors can compare 2 random dates side by side, by showing a stereo image in split screen mode.
I'm trying this by combining the two choosen (dates) scene names in a variable.
ex.Code<vtourskin_settings _initLeft="231005" _initRight="231019" /> <action name="skin_startup2" autorun="onstart"> txtadd(_stereoScene, get(vtourskin_settings._initLeft), '|', get(vtourskin_settings._initRight)); </action>
And then call it as follows when the stereo scene is loading.
But that doesn't work. Or is there another method ?
-
-
Hi,
Any more news about this? We're very interested to inclue Vimeo 360's too.
Grts,
Yvan -
Hi, is it possible to autorotate a 360video?
Here is my problem. I have a 360 video of people hiking in the woods. The camera is mounted on a cable (wiral system).
When the video is playing, I want to keep the focus on the moving people while the video is playing.
But is seems that this can't be don't with f.ex this action 'tween(view.hlookat, -140, 2.5, easeInOutQuad);'
Anyone knows a solution?Thx,
Yvan -
Not very clear to me, are these effects that are performed on the panorama itself? If yes, what about the performance when viewing the 360, because I don't see any examples of this.
Otherwise a great plugin ! -
Did you manage to copy your Vtour to the O.Go device ?
-
OK, I will check that. Thank you Klaus.
Update: Simple as that :) Looking great in the Oculus Go! -
Today I reveived my Oculus Go too.
Maybe a dumb question but I have no clue how to use it with our Krpano tours.
When I use the standard browser, the Vtour is only shown in a tiny window.
Is there a possibility to make/view our tours in a full 360 surrounding? Or do we have to use the 'isgearvr' option for this? -
This is an interesting approach too, thank you PIotr.
But we need the country code because the purpose is to direct the visitor to a website in his own country.
F.ex. Here in Belgium we speak 2 languages (3 in fact ;). If the browser detects dutch, the visitor can be directed to Holland or Belgium, If he speaks french, he can be directed to Belgium or France. Therefore the country code is important for us.
Another option is to let the visitor choose his own country at the start of the Vtour. But automating this would be great.Grts,
Yvan -
Thank you for your reply. We will check this.
Grts,
Yvan -
Is it possible in Krpano to do a browser-level country ánd language check,
and display the tour in the language accordingly?
Yvan. -
Hi,
Since the last update, this command returns a null value: copy(titelscene,scene[get(xml.scene)].title);
Has something changed because in earlier versions, I had no problems with this command.EDIT: Found the solution myself (script error).
Yvan.
-
Thank you for this great plugin. Is it possible to make it work in VR mode too ?
Grts,
Yvan -
-
-
We seem to have audio and video sync issues on seemingly random occasions.
We’ve tried to reproduce it within a fixed set of parameters without luck.
Trying different browsers and platforms (macOS/Win), different file formats, sizes and compression,
mp4, ogg, webm, has produced no definite success rate yet.We’re running out of ideas, any help?
-
Never Mind Jerome, I already found the solution myself ;)
Code<action name="change_language_group"> set(current_language,get(lang)); for(set(i,0), i LT panoramagroup.count, inc(i), if(current_language == nl, set(panoramagroup[get(i)].title, get(panoramagroup[get(i)].nl_grouptitle)); ); if(current_language == fr, set(panoramagroup[get(i)].title, get(panoramagroup[get(i)].fr_grouptitle)); ); if(current_language == en, set(panoramagroup[get(i)].title, get(panoramagroup[get(i)].en_grouptitle)); ); if(current_language == de, set(panoramagroup[get(i)].title, get(panoramagroup[get(i)].de_grouptitle)); );); </action>
-
Hi Jerome,
A while back, I asked you if it is possible to change the language (titles) of the Grid menu. I tried your method and it works great.
But I was woundering if is possible to change the group names too?Tnx for help,
YvanYou could use something like this for example :
Code
Display More<krpano current_language="fr"> <events onxmlcomplete="change_language"/> <action name="change_language"> for(set(i,0), i LT scene.count, inc(i), if(current_language== fr, set(scene[get(i)].title, get(scene[get(i)].fr_title)); set(scene[get(i)].description, get(scene[get(i)].fr_description)); , set(scene[get(i)].title, get(scene[get(i)].end_title)); set(scene[get(i)].description, get(scene[get(i)].en_description)); ); ); </action> <scene name="scene_1" fr_title="Titre en français" en_title="English title" fr_description="Description en français" en_description="English description" .....>
-
Very usefull! Thank you :)