TextTrackList - Web APIs 编辑

The TextTrackList interface is used to represent a list of the text tracks defined by the <track> element, with each track represented by a separate textTrack object in the list.

Retrieve an instance of this object with HTMLMediaElement.textTracks. The individual tracks can be accessed using array syntax or functions such as forEach() for example.

Properties

This interface also inherits properties from its parent interface, EventTarget.

length Read only
The number of tracks in the list.

Event handlers

onaddtrack
An event handler to be called when the addtrack event is fired, indicating that a new text track has been added to the media element.
onchange
An event handler to be called when the change event occurs.
onremovetrack
An event handler to call when the removetrack event is sent, indicating that a text track has been removed from the media element.

Methods

This interface also inherits methods from its parent interface, EventTarget.

getTrackById()
Returns the TextTrack found within the TextTrackList whose id matches the specified string. If no match is found, null is returned.

Events

addtrack
Fired when a new text track has been added to the media element.
Also available via the onaddtrack property.
change
Fired when a text track has been made active or inactive.
Also available via the onchange property.
removetrack
Fired when a new text track has been removed from the media element.
Also available via the onremovetrack property.

Usage notes

In addition to being able to obtain direct access to the text tracks present on a media element, TextTrackList lets you set event handlers on the addtrack and removetrack events, so that you can detect when tracks are added to or removed from the media element's stream. See onaddtrack and onremovetrack for details and examples.

Examples

Getting a video element's text track list

To get a media element's TextTrackList, use its textTracks property.

var textTracks = document.querySelector("video").textTracks;

Monitoring track count changes

In this example, we have an app that displays information about the number of channels available. To keep it up to date, handlers for the addtrack and removetrack events are set up.

textTracks.onaddtrack = updateTrackCount;
textTracks.onremovetrack = updateTrackCount;

function updateTrackCount(event) {
  trackCount = textTracks.length;
  drawTrackCountIndicator(trackCount);
}

Specifications

SpecificationStatusComment
HTML Living Standard
The definition of 'TexTrackList' in that specification.
Living Standard 

Browser compatibility

BCD tables only load in the browser

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:107 次

字数:7075

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文