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

simultaneously play multiple video sources #36

Closed MoAsmar closed 5 years ago

MoAsmar commented 5 years ago

Feature request / Question:

Can I use multiple video sources that play continuously one after the other?

I want to know if this functionality needs a custom implementation, or already exist in the component and can be used easily.

nkoehler commented 5 years ago

There is no existing implementation for this. You can achieve this by listening to the video 'ended' event and setting the source to the next video in a playlist.

MoAsmar commented 5 years ago

Yes, I tried that and it worked, thank you.