Definition
HTML Standard defines VideoTrack
[Exposed=Window]
interface VideoTrack {
readonly attribute DOMString id;
readonly attribute DOMString kind;
readonly attribute DOMString label;
readonly attribute DOMString language;
attribute boolean selected;
};
This interface is extended in the following specifications:
- Media Source Extensions™
[Exposed=(Window,DedicatedWorker)] partial interface VideoTrack { readonly attribute SourceBuffer? sourceBuffer; };
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface VideoTrack {
readonly attribute DOMString id;
readonly attribute DOMString kind;
readonly attribute DOMString label;
readonly attribute DOMString language;
attribute boolean selected;
readonly attribute SourceBuffer? sourceBuffer;
};
Methods and attributes that return objects implementing VideoTrack
Referring IDL interfaces/dictionaries
Referring specifications
- Media Source Extensions™ refers to
VideoTrack