Liking cljdoc? Tell your friends :D

web.media.AudioTrack

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>`.
raw docstring

enabledcljs

(enabled this)

Property.

The web.media.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.media.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`
sourceraw docstring

idcljs

(id this)

Property.

[Read Only]

The id property contains a string which uniquely identifies the represented by the web.media.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.media.AudioTrack`.

`var trackID = AudioTrack.id;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/id`
sourceraw docstring

kindcljs

(kind this)

Property.

[Read Only]

The kind property contains a string indicating the category of contained in the web.media.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.media.AudioTrack`.

`var trackKind = AudioTrack.kind;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/kind`
sourceraw docstring

labelcljs

(label this)

Property.

[Read Only]

The read-only web.media.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.media.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`
sourceraw docstring

languagecljs

(language this)

Property.

[Read Only]

The read-only web.media.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.media.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`
sourceraw docstring

set-enabled!cljs

(set-enabled! this val)

Property.

The web.media.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.media.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`
sourceraw docstring

source-buffercljs

(source-buffer this)

Property.

[Read Only]

The read-only web.media.AudioTrack property sourceBuffer returns web.video.SourceBuffer that created the track, or null if the was not created by a web.video.SourceBuffer or the web.video.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.media.AudioTrack` property sourceBuffer returns
`web.video.SourceBuffer` that created the track, or null if the
was not created by a `web.video.SourceBuffer` or the `web.video.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`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close