Liking cljdoc? Tell your friends :D

audio.AudioTrack

The AudioTrack interface represents a single audio track from of the HTML media elements, web.<audio> or web.<video>.

The AudioTrack interface represents a single audio track from
of the HTML media elements, `web.<audio>` or `web.<video>`.
raw docstring

enabledcljs

(enabled this)

Property.

The audio.AudioTrack property enabled specifies whether or the described audio track is currently enabled for use. If the is disabled by setting enabled to false, the track is muted and 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 `audio.AudioTrack` property enabled specifies whether or
the described audio track is currently enabled for use. If the
is disabled by setting enabled to false, the track is muted and
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.

The id property contains a string which uniquely identifies the represented by the audio.AudioTrack.

var trackID = AudioTrack.id;

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

Property.

The id property contains a string which uniquely identifies the
represented by the `audio.AudioTrack`.

`var trackID = AudioTrack.id;`

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

kindcljs

(kind this)

Property.

The kind property contains a string indicating the category of contained in the audio.AudioTrack.

var trackKind = AudioTrack.kind;

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

Property.

The kind property contains a string indicating the category of
contained in the `audio.AudioTrack`.

`var trackKind = AudioTrack.kind;`

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

labelcljs

(label this)

Property.

The read-only audio.AudioTrack property label returns a string the audio track's human-readable label, if one is available; it returns an empty string.

var audioTrackLabel = AudioTrack.label;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/label

Property.

The read-only `audio.AudioTrack` property label returns a string
the audio track's human-readable label, if one is available;
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.

The read-only audio.AudioTrack property language returns a 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.

The read-only `audio.AudioTrack` property language returns a
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 audio.AudioTrack property enabled specifies whether or the described audio track is currently enabled for use. If the is disabled by setting enabled to false, the track is muted and 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 `audio.AudioTrack` property enabled specifies whether or
the described audio track is currently enabled for use. If the
is disabled by setting enabled to false, the track is muted and
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.

The read-only audio.AudioTrack property sourceBuffer returns web.SourceBuffer that created the track, or null if the track not created by a web.SourceBuffer or the web.SourceBuffer been removed from the media.MediaSource.sourceBuffers attribute its parent media source.

var sourceBuffer = AudioTrack.sourceBuffer;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrack/sourceBuffer

Property.

The read-only `audio.AudioTrack` property sourceBuffer returns
`web.SourceBuffer` that created the track, or null if the track
not created by a `web.SourceBuffer` or the `web.SourceBuffer`
been removed from the `media.MediaSource.sourceBuffers` attribute
its 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