Media
Player
This is the top-most component in the library used to group media elements and control the flow of media state.
Usage
All media elements exist inside the <media-player>
component. It's main jobs are to manage media state, dispatch media events, satisfy media requests, and expose media state through HTML attributes and CSS properties for styling purposes.
Most of the information you need for working with the player can be found in the Core Concepts section. Here's a few important links to get you started:
- The loading section contains information on how to avoid layout shifts, apply loading strategies, load media sources, and set up providers.
- Provider guides such as this one for HLS contain important information on how to set them up and use them.
- The state management section will guide you on reading/subscribing to media state, and updating it.
- The events guide will explain how to use events and teach foundational concepts such as requests and triggers.
- The media outlet plays an vital role in rendering, it's best to understand it before designing your player.
- The styling foundation is a complete introduction to styling elements and components within the player.
- Finally, the API reference contains all the details you need about the player such as the properties, methods, and events available.
Connect Event
The <media-player>
element will fire a media-player-connect
event that will bubble up the DOM so you can obtain a reference to it when it's ready:
Previous
<-
References
Next
Outlet
->