Posts by nelk

    But how can I view it in krpano? I downloaded the krpano viewer, and replaced the example video and my screen only shows the interface and no image.

    I'll aprecciate your help.
    Thanks.

    Hi Hernan,

    The video needed to be re-encoded before going to krpano. You can use Handbrake for instance to do it.

    The best quality will be done with a 2 pass encoding.

    This will be improve over time to avoid this re-encoding step

    Hi nelk,

    I´ve been looking forward to a fast and easy-to-use video stitcher for future projects, but I have to say that your prices are ridiculous! And I am creating virtual tours for a living, so I can afford highly professional software. But your infinite resolution-version will obviously coast the amount of a Adobe Creative Suite Do you really think that your video stitcher is worth the same money as After Effects, Photoshop, Premiere Pro, Flash Pro, Audition, Illustrator & much, much more combined? Even 499€ for the 4K-Version is quite a bit, compared to the prices of HQ-Stitchers like PTGui.

    Thanks for the effort, but I think I´ll stick to PTGui, which is capable of stitching video-panoramas just fine!

    Still, the best wishes for you and your business

    Hi Nupsi,

    Thanks for your comment. Yes PTGui is indeed a very good stitching tool, this is why we rely on it for the calibration. And if it fits your need, no problem to stick with it of course! But if you make panoramic videos regularly, you'll probably prefer a more dedicated tool.

    And by the way, it's free to use for exporting video up to 1600x800 right now.

    Hi there,

    Some of you who are interesting by the 360 video might have a look to VideoStitch, a software we just released in beta.

    It works with a PTGui / Hugin calibration files, and it relies on the graphics card to do the processing, so the stitch is very fast.

    There is a demo project on the download page, if you want to give it a try ( and if you have no 360 camera yet )

    After the video has been re-encoded, it works seamlessly with krpano !

    Best regards,

    Nicolas Burtey

    Hi,

    It will be soon more easy to integrate videos as hotspot into a panorama with a tool I'm developing, VideoStitch, it's first aim to stitch videos together, but it will be possible to use it to just map one video from a perspective to another by using the PTGui parameters, so after you find the parameters, you don't have to go to the sequence of images from the video, do the mapping, and then make a video again, all this is done in one step.

    Regards,
    Nicolas

    Hi Klaus,


    I just tried to apply a filter on the krpano.get("image.layer"); with the 1.0.8.14, and nothing is applied ...


    Is there any bug with the last version ?


    This is what I tried


    Code
    panoimage = krpano.get("image.layer");panoimage.filters.push ( new BlurFilter (64,64,3) ) ;


    Thanks for your answer !

    Make it worked with the (fantastic) imagelayer plugin

    Hi,

    I'd like to know how I can merge 2 scenes :

    I've one scene in one xml :

    Code
    <scene name="pano">
    
    
    <plugin name="a1" ... />
    <plugin name="a2" ... />
    
    
    </scene>

    and another xml with some additionnal parameters

    Code
    <scene name="pano">
    
    
    <plugin name="b1" ... />
    <plugin name="b2" ... />
    
    
    </scene>

    I'd like to merge this 2 scene. Is there a way to do this ?

    I tried loadpano(xml2.xml,null,MERGE), loadpano(xml2.xml,null,KEEPSCENES ) and loadpano(xml2.xml,null,KEEPSCENES|MERGE ) but it's not working

    In other words, I'd like to make a loadinclude="", like if I have an <include url="" /> but dynamically, the path of the include is not known in the xml, it's passed dynamically through js

    If you have any clue how to do that ... thanks !

    Hi,

    I'm trying to create a information window, which would appears when the user click on a hotspot.

    Is there any way to show some HTML inside a plugin, like a <p> or a <div>, which could be design with CSS like a "traditionnal" website ?

    I tried to make dynamic generated content and attached it to the plugin, but it doesn't work. The only thing I manage to show from a plugin is from an canvas objet, but use some more traditionnel HTML element could be easier ...


    This is king of thing I've tried ( jQuery loaded in header ) :

    Code
    var par = $('<p>Ceci est un paragraphe</p>');
    plugin.sprite.appendChild(par);


    Any advice or example ?

    Thanks !

    Hi,

    I've no idea of the problem, but I can tell you that this line :

    Code
    event.target.content as Object.embeddedstartup(stage, krpano_ready);

    is not syntax correct imho ! So it's normal that does not work !

    Hi,

    I'm trying to add a plugin, but instead of pointing the plugin to a url, I'd like to know if it's possible to pass a Bytearray in AS3.

    I've done this in a plugin :

    Code
    var plugin:Object = krpano.get('plugin');
    krpano.trace (1, describeType(plugin));

    And I have method like "createItem" that seems interesting. But as this method is not documented, I've no idea how to use this and if what I'm trying is possible.

    Thanks !