mat-video
mat-video copied to clipboard
Fullscreen Issue
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()); `