You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The goal is to implement the most common events for a video player to improve its interactivity and facilitate integration with applications. The implemented events should adhere to industry standards and cover the most frequent use cases. With this we will be able to interact with the player, and even build plugins based on the events the Player triggers :D
moqplayer.addEventListener('play', () => {
console.log('Video started playing');
});
The goal is to implement the most common events for a video player to improve its interactivity and facilitate integration with applications. The implemented events should adhere to industry standards and cover the most frequent use cases. With this we will be able to interact with the player, and even build plugins based on the events the Player triggers :D
We can use HTMLMediaElement Events documentation as a reference: https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement#events
Basic Playback Events:
User Interaction Events:
Player State Events:
The text was updated successfully, but these errors were encountered: