Suchergebnisse
Suchergebnisse 1-20 von insgesamt 75.
Hi, I created a tour which changes URL when scene has changed, but when I use my keyboard to navigate (MAC) and press CMD+ left/right/up/down arrow it starts panning to the direction and never stops. How to prevent this? It occurs even with krpano examples (https://krpano.com/krpano.html?xml=tours…rpanologo=false) Is this a feature or a bug? Just press CMD and right arrow when pano is loaded. I could call of course stopmovements() but I'd like it to move / zoom etc while changing scene.
Does anyone has an idea how one could make a tour like you mentioned: http://www.christiangreysapartment.com Tried to Google implementations with ThreeJS but couldn't find any documentation of movement & fading between images like they have done here.
You can have loaders though, there are some examples here (cannot remember where to find) and with javascript you can tell how many percent of the video has to be loaded before you can start showing the video. You just have to make many versions to support different bandwidths. You can make a simple test like this http://stackoverflow.com/questions/55297…d-in-javascript and then offer the correct version as default. That is true that krpano doesn't have all bundled up and it lacks some things, b...
I have a case where I have to show 360° video with more than four monitors around the people. I can extract frames from the video and then use krpanotools to convert images and then combine those to videos again. Does anyone has idea how to split equirectangular image to for example 9 images (with aspect ratio of 16:9) horizontally and ignore the images from top & bottom?
Just for the future researchers: Problem was somehow corrupted mp4 file. It at least was missing height and width in meta data. Converted it again with ffmpeg and now it works with IE/mobile.
https://paivalehdenmuseo.panoraamakuvat.…ytto/Tytto.webm Seems to be correct. IE complains about the mp4 file. I tried both paths.
Is there anything that can be done? I have checked mime-types etc. but I don't understand why this won't work. https://paivalehdenmuseo.panoraamakuvat.…ttely-360-video This is in the scene: <plugin name="video" url.flash="plugins/videoplayer.swf" url.html5="plugins/videoplayer.js" videourl="Tytto_converted.mp4|panos/Tytto/Tytto.webm"/> <image prealign="0|-15|0"> <sphere url="plugin:video"/> </image> I changed the path from panos/Tytto/Tytto.mp4 to the root, and tried another conversion but no lu...
Hi, I'm building a better version of my old panorama CMS and I'm about to implement an automated stitching to it. Do you guys have done anything like this before and any idea where to start? My first idea was to use either Hugin or Panorama Tools with Google Compute Engine (high cpu & 14GB ram) but I'm unsure how they will handle colors, blending, HDR etc. without too much user input. Also the shooting technique is my concern. Should it be done like Google does with it's business photos (4x3 bra...
Hi, I have an old virtual tour that is missing all the mobile / tablet things so is there a change to convert all the multires images to either cubes or equirectangular? Or does the current version of krpano use those old multires formats also for mobile? Thanks!
Zitat von »sachagriffin« http://krpano.com/docu/xml/#hotspot.capture omg. Cannot believe that I didn't saw that myself when browsing the docs.. Thanks mate :)
Hi, how can I drag (drag2d) the panorama when I'm over some hotspot? I tried adding onmousedown events to the hotspot and changing the ath / atv of the panorama but didn't succeed. Can I pass mouse events to the panorama when dragging, but not when clicking the hotspot?
Thanks Klaus, just what I was after for: http://panoraamakuvat.fi/demot/ooppera/s…us.luonnos.html - Juha
How can I move a hotspot (change ath) when panning the panorama to some direction? Is there an event that I can use etc? I'd like to check my current ath and slice it half so it seems that the hotspot would follow when I move. Example: Current ath = 0 Quellcode 1 <hotspot name="test" url="test.png" ath="0" atv="0" width="100" height="prop" distorted="true" rx="0.0" ry="0.0" rz="0.0"/> Current ath = 90 Quellcode 1 <hotspot name="test" url="test.png" ath="45" atv="0" width="100" height="prop" dist...
I read your post here loading XML from another domain I'm using Amazon S3 as my CDN and it's working fine with my shared hosting place. The .htaccess file is enough - no need to configure apache etc. It is not the perfect option because of the lack of benefit with CDN (all data will move though your shared host). You can make it work with different sub domains by altering the RewriteCond and RewriteRule.
Hi, of course: Make a .htaccess file to the folder you have locally: Quellcode 1 2 3 4 Options +FollowSymlinks RewriteEngine On RewriteCond %{REQUEST_URI} $ [NC] RewriteRule (.*) http://destination_domain/folder/$1 [P] Then it will pass thru all the traffic from your another domain. Note that it will use your server's bandwidth. More info: http://httpd.apache.org/docs/2.0/mod/mod_proxy.html
Hi, thanks for the reply. Those images are not in a straight line so I made it working by copy pasting the ath values to the hotspots like you told. I was looking for a more automated way but after researching the forum & documentation, I found that it's not possible to access the scene sub tags (like hotspots) but just scene[namehere].content/name and onstart. Now I have an action that is called everytime when scene is changed and there Quellcode 1 loadscene(scene_%4, view.hlookat=%7&view.f...
Hi, thanks for the reply. I think my question was unclear. I have the following code: Quellcode 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <scene name="scene_scene1"> <view hlookat ="0" vlookat ="0" fov ="90" fovmin ="30" fovmax ="110" fisheye ="0.0" fisheyefovlink="0.0" /> <hotspot name="h_scene2" url="%SWFPATH%/buttons/red_floor_next.png" ath="-3.9457702869214444" atv="19.06036256842082" scale="0.5" zoom="false" onloaded="resetsize();" onhover="showtext(Scene 2)" onclick="action(changeradar, 180, 280, 1...
Hi, I'm trying to get a scene hotspot ath value so I could load the scene and it would look at the direction where I was. But the following isn't working (bolded): scene[get(scenename)].hotspot[get(hotprevscene)].ath Quellcode 1 2 3 4 5 6 <action name="changeradar"> txtadd(hotprevscene, 'h_', get(previousscene)); txtadd(scenename, 'scene_', get(%4)); loadscene(scene_%4, view.fov=30&view.hlookat=scene[get(scenename)].hotspot[get(hotprevscene)].ath, MERGE, ZOOMBLEND(1,2)); set(previousscene, %...
"Solved" this with .htaccess using Apache's Proxy method :-D
:D Thanks Michel, I should have browsed the forum more accurately.