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