Does anyone have a solution for iPad "Play Video"?

  • I can get video to work on everything.

    On desktop video will autostart.
    On iPhone the video will play fullscreen.
    On iPad - the video "hole" is black. You have to tap the screen.
    But I am using a black pano as a background - most people
    do not know what to do - all they see is a black screen.

    I tried adding a graphic to say "Click here to play video".
    Well that did not work - because you are clicking the graphic.
    What would probably work is using the same graphic but have it
    fade out in a few seconds?

    What have people done to address this play problem?

  • Hello,

    what I did to address iPad videos, is to call a video previously through a hotspot or plugin:

    Code
    <action name="play">
    plugin[video].playvideo('videos/test.mp4');
    </action>

    For your graphic stuff, something like this:

    Code
    <action name="play">
    plugin[video].playvideo('videos/test.mp4');
    delayedcall(1,fadegraphic());
    </action>
    
    
    <action name="fadegraphic">
    tween(plugin[graphic].alpha,0,0.5,easeoutquad, set(plugin[graphic].visible,false););
    set(plugin[graphic].enabled,false);
    </action>

    Best regards.

  • Hello,

    what I did to address iPad videos, is to call a video previously through a hotspot or plugin:

    Code
    <action name="play">
    plugin[video].playvideo('%SWFPATH%/videos/test.flv');
    </action>

    For your graphic stuff, something like this:

    Code
    <action name="play">
    plugin[video].playvideo('%SWFPATH%/videos/test.flv');
    delayedcall(1,fadegraphic());
    </action>
    
    
    <action name="fadegraphic">
    tween(plugin[fadegraphic].alpha,0,0.5,easeoutquad, set(plugin[graphic].visible,false););
    set(plugin[graphic].enabled,false);
    </action>

    Best regards.


    JUst remember to use another format. You cannot use flv for iPad.
    http://www.krpano.com/plugins/videoplayer/#html5

    Hans

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!