The AudioTrack interface represents a single audio track from
of the HTML media elements, <audio>
or <video>
.
The AudioTrack interface represents a single audio track from of the HTML media elements, `<audio>` or `<video>`.
(enabled this)
Property.
The web.audio.AudioTrack
property enabled specifies whether
not the described audio track is currently enabled for use. If
track is disabled by setting enabled to false, the track is muted
does not produce audio.
`isAudioEnabled = AudioTrack.enabled;
AudioTrack.enabled = true | false;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/enabled
Property. The `web.audio.AudioTrack` property enabled specifies whether not the described audio track is currently enabled for use. If track is disabled by setting enabled to false, the track is muted does not produce audio. `isAudioEnabled = AudioTrack.enabled; AudioTrack.enabled = true | false;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/enabled`
(id this)
Property.
[Read Only]
The id property contains a string which uniquely identifies the
represented by the web.audio.AudioTrack
.
var trackID = AudioTrack.id;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/id
Property. [Read Only] The id property contains a string which uniquely identifies the represented by the `web.audio.AudioTrack`. `var trackID = AudioTrack.id;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/id`
(kind this)
Property.
[Read Only]
The kind property contains a string indicating the category of
contained in the web.audio.AudioTrack
.
var trackKind = AudioTrack.kind;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/kind
Property. [Read Only] The kind property contains a string indicating the category of contained in the `web.audio.AudioTrack`. `var trackKind = AudioTrack.kind;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/kind`
(label this)
Property.
[Read Only]
The read-only web.audio.AudioTrack
property label returns a
specifying the audio track's human-readable label, if one is
otherwise, it returns an empty string.
var audioTrackLabel = AudioTrack.label;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/label
Property. [Read Only] The read-only `web.audio.AudioTrack` property label returns a specifying the audio track's human-readable label, if one is otherwise, it returns an empty string. `var audioTrackLabel = AudioTrack.label;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/label`
(language this)
Property.
[Read Only]
The read-only web.audio.AudioTrack
property language returns
string identifying the language used in the audio track.
var audioTrackLanguage = AudioTrack.language;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/language
Property. [Read Only] The read-only `web.audio.AudioTrack` property language returns string identifying the language used in the audio track. `var audioTrackLanguage = AudioTrack.language;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/language`
(set-enabled! this val)
Property.
The web.audio.AudioTrack
property enabled specifies whether
not the described audio track is currently enabled for use. If
track is disabled by setting enabled to false, the track is muted
does not produce audio.
`isAudioEnabled = AudioTrack.enabled;
AudioTrack.enabled = true | false;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/enabled
Property. The `web.audio.AudioTrack` property enabled specifies whether not the described audio track is currently enabled for use. If track is disabled by setting enabled to false, the track is muted does not produce audio. `isAudioEnabled = AudioTrack.enabled; AudioTrack.enabled = true | false;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/enabled`
(source-buffer this)
Property.
[Read Only]
The read-only web.audio.AudioTrack
property sourceBuffer returns
web.audio.SourceBuffer
that created the track, or null if the
was not created by a web.audio.SourceBuffer
or the web.audio.SourceBuffer
been removed from the MediaSource.sourceBuffers
attribute of
parent media source.
var sourceBuffer = AudioTrack.sourceBuffer;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/sourceBuffer
Property. [Read Only] The read-only `web.audio.AudioTrack` property sourceBuffer returns `web.audio.SourceBuffer` that created the track, or null if the was not created by a `web.audio.SourceBuffer` or the `web.audio.SourceBuffer` been removed from the `MediaSource.sourceBuffers` attribute of parent media source. `var sourceBuffer = AudioTrack.sourceBuffer;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/sourceBuffer`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close