nkoehler / mat-video

:tv: mat-video is an Angular 8/9+ video player using Material!
https://nkoehler.github.io/mat-video/
MIT License
91 stars 47 forks source link

Fullscreen Issue #61

Open oliviya opened 4 years ago

oliviya commented 4 years ago

Video playing in full-screen mode is showing different behavior, When we play video in full-screen mode by clicking on the full-screen icon control then the controls in the expanded view is behaving as per the given customized attributes. But when i try to make full-screen mode by calling the request(which is available inside the FullscreenService) method from our component ts, the video player controls in the full-screen mode is entirely different (it has certain features like fast-forward/rewind by double tapping on video) the given attributes restrictions like title and all are also not taking. Is there way to solve this disparity

`my sample HTML code: <mat-video

videoFull

      src="video.mp4"
      [fullscreen]="true"
      title="X"
      `[quality]="false"`
      [overlay]="true" >

component.ts(for calling fullscreen from ts on a click) @ViewChild('videoFull', { static: false }) matVideoFull: MatVideoComponent;

this.FullscreenService.request(this.matVideoFull.getVideoTag()); `