THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Audio addTextTrack() Method

Audio Object Reference 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

Internet Explorer Firefox Opera Google Chrome Safari

The addTextTrack() method is not supported in any major browser.


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 Reference Audio Object