This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The addTextTrack() method of the HTMLMediaElement interface creates a new TextTrack object and adds it to the media element. It fires an addtrack event on this media element's textTracks. This method can't be used on a TextTrackList interface, only an HTMLMediaElement.
addTextTrack(kind) addTextTrack(kind, label) addTextTrack(kind, label, language)
kindA string representing the TextTrack.kind property (subtitles, captions, descriptions, chapters, or metadata).
labelA string representing the TextTrack.label property.
languageA string representing the TextTrack.language property.
The newly created TextTrack object.
None.
This example adds a new TextTrack with the kind set to "subtitles", and adds a new VTTCue to that.
const video = document.querySelector("video");
const newTrack = video.addTextTrack("subtitles");
newTrack.addCue(new VTTCue(3, 6, "Hello world!"));
console.log(newTrack.cues[0].text);
// "Hello world!"
| Specification |
|---|
| HTML> # dom-media-addtexttrack-dev> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
addTextTrack |
2326 | 12 | 31 | ≤12.1 | 6 | 2526 | 31 | ≤12.1 | 6 | 1.51.5 | 4.44.4 | 6 |
TextTrack
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/addTextTrack