yanwsh / videojs-panorama

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

VR Button is not split the video screen instead shown black screen. #175

Open dj4385 opened 2 years ago

dj4385 commented 2 years ago

I am using videojs 7.17.0 and panoroma in angular 12 application. But when we click on VRButton then screen is not split in two parts instead of that show black screen. Please help me to fix it.

code:

HTML File:
<video class="video-js vjs-default-skin" 
    crossorigin="anonymous" poster="assets/poster.jpg"   preload="none"
     controls   style="object-fit:cover" width="774px" height="400.75px">
  <source [src]="videoLink" type="video/mp4"   #source/>
</video>
-----------------------------
ts file

this.player = (window as any).player = videojs(this.video?.nativeElement, {}, function () { });
this.player.panorama({
      clickAndDrag: true,
      clickToToggle: true,
      autoMobileOrientation: true,
      callback: function () {
        if(this.player) {
          this.player.play();
        }
      }
    });

Untitled

dj4385 commented 2 years ago

Expected Result: Screenshot from 2021-11-18 12-09-03