yanwsh / videojs-panorama

a plugin for videojs run a full 360 degree panorama video.
http://yanwsh.github.io/videojs-panorama/
Other
485 stars 160 forks source link

Enable Cardboard by Default #30

Closed tibewww closed 7 years ago

tibewww commented 7 years ago

Hi, Amazing and working like a charm !

One question, are we able to launche the video with the Cardboard mode enable by default ?

If yes, how ? And possible to only read the video only this way ?

Thanks a lot !

edoreyes commented 7 years ago

Hello, great job here.

I have the same question.

Thanks in advance,

Eduardo

yanwsh commented 7 years ago

You can enable it by listen video play event,

        player.on("play", function(){
            var vrbtn = player.controlBar.getChild("VRButton");
            vrbtn.handleClick();
        });
edoreyes commented 7 years ago

Wow! You are the best. Exactly that I needed it.