I have video player in my angular8 application with help of ngx-embeded-video i need to disable default player opiton like pause, maxi window, volume, play option. Also that video need to play angular material modal popup on that pop all the player option need to enable. The video play is shown below When the user click on this video that time angular material modal need to open and play same video i have tried model open but not working i need help on this.
html:
ts:
import { EmbedVideoService } from 'ngx-embed-video';
import { CarPopupModalComponent } from '../car/car-popup-modal/car-popup-modal.component'
export class CarComponent implements OnInit {
videos: any;
vimeoUrl = 'https://vimeo.com/197933516';
constructor(private embedService: EmbedVideoService){
this.videos = this.embedService.embed(this.vimeoUrl);
}
openCarDialog(): void {
console.log('inside the modal');
this.dialog.open(CarPopupModalComponent, {
width: '250px',
data: {}
})
}
}
I was achieved via following angular supporting package "https://www.npmjs.com/package/mat-video"