GuidePlayback
Show captions and subtitles
Show captions and subtitles, and let users turn them on and pick a language.
Recommended approach
Add WebVTT tracks as <track> children of the media element, and give users a <media-captions-button> to toggle them.
How it works
The text track feature mirrors the media element’s textTracks into player state:
textTrackListholds every track with itsid,kind,label,language, andmode.subtitlesShowingistruewhen any caption or subtitle track is showing.toggleSubtitles(forceShow?)shows or hides all caption and subtitle tracks.selectSubtitlesTrack(id)shows one track and disables the rest; pass'off'to disable all.
Tracks don’t have to come from <track> elements: tracks that streaming media exposes (for example in-manifest HLS captions) appear in textTrackList the same way.
The browser renders the cues. Style them with the ::cue pseudo-element.
Availability and constraints
- Captions availability is
'unavailable'until the media has at least one caption or subtitle track; caption controls render nothing in that case. - Cues load asynchronously. A track appears in
textTrackListbefore its cues are parsed, so cue-driven UI fills in when the track finishes loading. - Cross-origin track files require CORS: serve the VTT with CORS headers and set
crossoriginon the media element. - Track selection UIs identify tracks by
labelandlanguage; give every track both. defaulton a<track>makes the browser show it initially.
Common variations
Language selection menu
For multiple languages, render a menu instead of a toggle.
Use <media-captions-radio-group> inside a menu or popover for explicit track selection.
Troubleshooting
Captions don’t appear
Confirm that:
- The track
kindiscaptionsorsubtitles. - The VTT file loads (check the network panel for the track request).
- The track is enabled:
defaulton the track element, a<media-captions-button>toggle, ortoggleSubtitles(true).
Captions work locally but not in production
The track file is served from another origin without CORS headers. Serve it with Access-Control-Allow-Origin and set crossorigin on the media element.
The selection menu is empty
The media has no caption or subtitle tracks, so captions availability is 'unavailable'. For streaming sources, confirm the manifest actually declares text tracks.
Related pages
Components
API
Guides
- Show timeline thumbnail previewsPreview frames along the timeline while the user scrubs, powered by a storyboard track.
- Media sourcesSet what a media element plays and how its engine plays it with the structured source property
- AccessibilityHow Video.js approaches accessibility, and what you should consider if you're deeply customizing your player