Suchergebnisse
Suchergebnisse 1-8 von insgesamt 8.
Hello, Last decade Web has changed significantly: flash and IE are dead, WebGL 2.0 is broadly supported by all browsers, WebGPU & WebXR are on the way, JavaScript evolved a lot, WebAssembly has arrived, etc. I use Krpano for one of my client in France and I'm curious @klaus.krpano how do you see the future of Krpano ?
The only forum thread I've found with examples is here: MAKE OBJECT (MULTIRES) droplet But it doesn't work for my example, which is: Quellcode 1 2 3 <image type="flat" frames="2" frame="1"> <flat url="frames/out-%00f.jpg" /> </image> It just shows a black screen and the browser actually didn't make any request for any images. However the files frames/out-001.jpg and frames/out-002.jpg exist and the following works well: Quellcode 1 2 3 <image> <flat url="frames/out-001.jpg" /> </image> I have no...
Hello, There is section in the doc that mentioned the frames and frame attributes of <image>: https://krpano.com/docu/xml/#image.frames But I was unable to find any other examples nor description on how to use it. I've also spent some time on the forum, but no information on that neither. Use Case: I want to show a Hyperlapse (composed of 125 flat JPG images) with scrolling slider which loads different images based on its direction. Problem: I've first tried loadscene, but it doesn't look like a...
Thank you @Hellkeeper for such a super quick response . But I've found another solution rather than adding more memory. My VM didn't have any Swap file, so I think when krpanotools reached the limit of memory it tried to use a swape file, but none was available. Here is the guide that helped me to resolve this issue: How To Resolve "Out of Memory" Errors on Ubuntu 17.10. It also worked for my VM (Ubuntu 20.04).
I run the `krpanotools makepano` script on a VM in a cloud. The command `./krpanotools transform -meminfo` gives this: Quellcode 1 2 totalmem: 1682 MB availmem: 1057 MB and `./krpanotools transform -memtest` this: Quellcode 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 ... ... ... totalmem: 1682 MB availmem: 58 MB freespace: 218 MB allocated: 1336 MB totalmem: 1682 MB availmem: 53 MB freespace: 214 MB allocated: 1340 MB totalmem: 1682 MB availmem: 50 MB freespace: 210 MB allocated: 1344 ...
Thanks Klaus That helped. I've just adapted the following code from Postprocessing Demo: Popups with Background-Blur : Quellcode 1 2 3 4 5 6 7 // enable browsed-based mouse-wheel and touch-scrolling support: div.addEventListener("wheel", stopPropagation, true); div.addEventListener("mousewheel", stopPropagation, true); div.addEventListener("DOMMouseScroll", stopPropagation, true); div.addEventListener("touchstart", function(event){ if(krpano.device.ios && window.innerHeight == krpano.display.htm...
I struggled with a bug/behavior in <layer> tag on touch devices. I have the following XML structure: Quellcode 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 <layer name="infocard_container" type="container" handcursor="false" parent="STAGE" capture="true" bgcapture="true" maskchildren="true" keep="true" width="340" height="100%" x="0" y="0" alpha="0" autoalpha="true"> <layer name="infocard" url="%$assetsUrl%/plugins/custom/infocard.js" width="100%" height="100%" enabled="true" c...
I was wondering how can I specify a custom plugin location. Here is my use case: Main XML config file is stored in a database and loaded at run time via Quellcode 1 loadxml and not via Quellcode 1 xml object attribute of the Quellcode 1 embedpano function.Then this XML config includes a few others XML config stored as static assets on the host. When I add Quellcode 1 <include url="add_hotspot/plugins_l/add_hotspot.xml" /> into my main XML config, that's not working showing errors for many files ...