| title | Overview |
|---|---|
| description | How Video.js players are structured — state, UI, and media |
import FrameworkCase from '@/components/docs/FrameworkCase.astro'; import { TabsRoot, TabsList, TabsPanel, Tab } from '@/components/Tabs'; import DocsLink from '@/components/docs/DocsLink.astro'; import DocsLinkCard from '@/components/docs/DocsLinkCard.astro'; import Aside from '@/components/Aside.astro';
Video.js v10 is built around a three-part architecture that separates concerns and maximizes flexibility. Each part is designed to work independently or together, allowing you to use as much or as little of Video.js as you need.
<FrameworkCase frameworks={["react"]}>
State is handled by a Player.Provider, which creates a central state store that all components can access. When you wrap your player in a Player.Provider, the components automatically connect to the state.
{/* All components inside automatically connect to state */} {/* [!code focus] */}
<Player.Provider> {/* [!code focus] */}
<VideoSkin>
<Video src="video.mp4" />
</VideoSkin>
</Player.Provider> {/* [!code focus] */}You can access state and actions from anywhere within the provider with the usePlayer hook.
<!-- All components inside automatically connect to state --> <!-- [!code focus] -->
<video-player> <!-- [!code focus] -->
<video-skin>
<video src="video.mp4"></video>
</video-skin>
</video-player> <!-- [!code focus] -->You can access state and actions from anywhere within <video-player> with PlayerController.
Learn more about state and actions
Use a prebuilt skin or build your own from the individual UI components.
Skins are complete, pre-designed player UIs that package components and styles together:
<FrameworkCase frameworks={["react"]}>
<Player.Provider>
<VideoSkin> {/* [!code focus] */}
<Video src="video.mp4" />
</VideoSkin> {/* [!code focus] */}
</Player.Provider>Learn more about skins
If you want more control than skins offer you, you can build your own UI from our components.
<FrameworkCase frameworks={["react"]}>
<Player.Provider>
<Player.Container> {/* [!code focus] */}
<Video src="video.mp4" />
<MediaControls> {/* [!code focus] */}
<PlayButton /> {/* [!code focus] */}
{/* ... */} {/* [!code focus] */}
</MediaControls> {/* [!code focus] */}
</Player.Container> {/* [!code focus] */}
</Player.Provider>To get started with UI components, you might consider ejecting a skin and using its pre-styled components as a foundation.
Learn more about UI components Build your own component
Media components are the components that actually display your media. They're essentially "players with no UI". They handle the video/audio rendering and expose a consistent API.
Media components can be format specific (HLS, DASH), service specific (YouTube, Vimeo, Mux), or use case specific (background video).
<FrameworkCase frameworks={["html"]}>
Media elements are discovered automatically. Plain <video> and <audio> elements are found via a querySelector, while custom media elements like <hls-video> register themselves.
<FrameworkCase frameworks={["react"]}>
<Player.Provider>
<VideoSkin>
<HlsVideo src="https://stream.mux.com/BV3YZtogl89mg9VcNBhhnHm02Y34zI1nlMuMQfAbl3dM.m3u8" /> {/* [!code focus] */}
</VideoSkin>
</Player.Provider>Presets preconfigure these parts for a specific use case.
<FrameworkCase frameworks={["react"]}>
The default presets are @videojs/react/video and @videojs/react/audio, covering the baseline set of controls you'd expect from the HTML <video> and <audio> tags.
<FrameworkCase frameworks={["html"]}>
The default presets are @videojs/html/video and @videojs/html/audio, covering the baseline set of controls you'd expect from the HTML <video> and <audio> tags.
Beyond the defaults, presets target more specific use cases. For example, /background includes a media element with autoplay, mute, and loop built in, a skin with no controls, and just the features needed to power it:
<FrameworkCase frameworks={["react"]}>
import { createPlayer } from '@videojs/react';
import { backgroundFeatures, BackgroundVideo, BackgroundVideoSkin } from '@videojs/react/background';
const Player = createPlayer({ features: backgroundFeatures });
function Hero() {
return (
<Player.Provider>
<BackgroundVideoSkin>
<BackgroundVideo src="hero.mp4" />
</BackgroundVideoSkin>
</Player.Provider>
);
}Learn more about presets