The AudioTrackList interface is used to represent a list of the
tracks contained within a given HTML media element, with each
represented by a separate web.media.AudioTrack
object in the
The AudioTrackList interface is used to represent a list of the tracks contained within a given HTML media element, with each represented by a separate `web.media.AudioTrack` object in the
(get-track-by-id this id)
Method.
The web.media.AudioTrackList
method getTrackById() returns
first web.media.AudioTrack
object from the track list whose
matches the specified string.
var theTrack = AudioTrackList.getTrackById(id);
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/getTrackById
Method. The `web.media.AudioTrackList` method getTrackById() returns first `web.media.AudioTrack` object from the track list whose matches the specified string. `var theTrack = AudioTrackList.getTrackById(id);` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/getTrackById`
(length this)
Property.
[Read Only]
The read-only web.media.AudioTrackList
property length returns
number of entries in the AudioTrackList, each of which is an
representing one audio track in the media element.
var trackCount = AudioTrackList.length;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/length
Property. [Read Only] The read-only `web.media.AudioTrackList` property length returns number of entries in the AudioTrackList, each of which is an representing one audio track in the media element. `var trackCount = AudioTrackList.length;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/length`
(onaddtrack this)
Property.
The web.media.AudioTrackList
property onaddtrack is an event
which is called when the addtrack event occurs, indicating that
new audio track has been added to the media element whose audio
the AudioTrackList represents.
AudioTrackList.onaddtrack = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onaddtrack
Property. The `web.media.AudioTrackList` property onaddtrack is an event which is called when the addtrack event occurs, indicating that new audio track has been added to the media element whose audio the AudioTrackList represents. `AudioTrackList.onaddtrack = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onaddtrack`
(onchange this)
Property.
The web.media.AudioTrackList
property onchange is an event
which is called when the change event occurs, indicating that
or more of the web.media.AudioTrack
s in the AudioTrackList
been enabled or disabled.
AudioTrackList.onchange = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onchange
Property. The `web.media.AudioTrackList` property onchange is an event which is called when the change event occurs, indicating that or more of the `web.media.AudioTrack`s in the AudioTrackList been enabled or disabled. `AudioTrackList.onchange = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onchange`
(onremovetrack this)
Property.
The web.media.AudioTrackList
onremovetrack event handler is
when the removetrack event occurs, indicating that an audio track
been removed from the media element, and therefore also from
AudioTrackList.
AudioTrackList.onremovetrack = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onremovetrack
Property. The `web.media.AudioTrackList` onremovetrack event handler is when the removetrack event occurs, indicating that an audio track been removed from the media element, and therefore also from AudioTrackList. `AudioTrackList.onremovetrack = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onremovetrack`
(set-onaddtrack! this val)
Property.
The web.media.AudioTrackList
property onaddtrack is an event
which is called when the addtrack event occurs, indicating that
new audio track has been added to the media element whose audio
the AudioTrackList represents.
AudioTrackList.onaddtrack = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onaddtrack
Property. The `web.media.AudioTrackList` property onaddtrack is an event which is called when the addtrack event occurs, indicating that new audio track has been added to the media element whose audio the AudioTrackList represents. `AudioTrackList.onaddtrack = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onaddtrack`
(set-onchange! this val)
Property.
The web.media.AudioTrackList
property onchange is an event
which is called when the change event occurs, indicating that
or more of the web.media.AudioTrack
s in the AudioTrackList
been enabled or disabled.
AudioTrackList.onchange = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onchange
Property. The `web.media.AudioTrackList` property onchange is an event which is called when the change event occurs, indicating that or more of the `web.media.AudioTrack`s in the AudioTrackList been enabled or disabled. `AudioTrackList.onchange = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onchange`
(set-onremovetrack! this val)
Property.
The web.media.AudioTrackList
onremovetrack event handler is
when the removetrack event occurs, indicating that an audio track
been removed from the media element, and therefore also from
AudioTrackList.
AudioTrackList.onremovetrack = eventHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onremovetrack
Property. The `web.media.AudioTrackList` onremovetrack event handler is when the removetrack event occurs, indicating that an audio track been removed from the media element, and therefore also from AudioTrackList. `AudioTrackList.onremovetrack = eventHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioTrackList/onremovetrack`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close