HTML DOM Audio addTextTrack() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

Audio addTextTrack() Method

❮ Audio Object

Example

Add a new text track to the audio:

var x = document.getElementById("myAudio");
var y = x.addTextTrack("caption");
y.addCue(new TextTrackCue("Test text", 01.000, 04.000,"","","",true));
Try it Yourself »

Definition and Usage

The addTextTrack() method creates and returns a new TextTrack object.

The new TextTrack object is added to the list of text tracks for the audio element.


Browser Support

Method
addTextTrack() Not supported Not supported Not supported Not supported Not supported

Syntax

audioObject.addTextTrack(kind, label, language)

Parameter Values

Value Description
kind Specifies the kind of text track.

Possible values:

  • "subtitles"
  • "caption"
  • "descriptions"
  • "chapters"
  •  "metadata"
label A string specifying the label for the text track. Is used to identify the text track for the users
language A two-letter language code that specifies the language of the text track.
To view all available language codes, go to our Language code reference

Technical Details

Return Value: A TextTrack Object, representing the new text track

❮ Audio Object