The web.VideoTrack
interface represents a single video track
a web.<video>
element.
The `web.VideoTrack` interface represents a single video track a `web.<video>` element.
(id this)
Property.
The id property contains a string which uniquely identifies the
represented by the web.VideoTrack
.
var trackID = VideoTrack.id;
See also: https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/id
Property. The id property contains a string which uniquely identifies the represented by the `web.VideoTrack`. `var trackID = VideoTrack.id;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/id`
(kind this)
Property.
The kind property contains a string indicating the category of
contained in the web.VideoTrack
.
var trackKind = VideoTrack.kind;
See also: https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/kind
Property. The kind property contains a string indicating the category of contained in the `web.VideoTrack`. `var trackKind = VideoTrack.kind;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/kind`
(label this)
Property.
The read-only web.VideoTrack
property label returns a string
the video track's human-readable label, if one is available;
it returns an empty string.
var videoTrackLabel = VideoTrack.label;
See also: https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/label
Property. The read-only `web.VideoTrack` property label returns a string the video track's human-readable label, if one is available; it returns an empty string. `var videoTrackLabel = VideoTrack.label;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/label`
(language this)
Property.
The read-only web.VideoTrack
property language returns a string
the language used in the video track.
var videoTrackLanguage = VideoTrack.language;
See also: https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/language
Property. The read-only `web.VideoTrack` property language returns a string the language used in the video track. `var videoTrackLanguage = VideoTrack.language;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/language`
(selected this)
Property.
The web.VideoTrack
property selected controls whether or not
particular video track is active.
`isVideoSelected = VideoTrack.selected;
VideoTrack.selected = true | false;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected
Property. The `web.VideoTrack` property selected controls whether or not particular video track is active. `isVideoSelected = VideoTrack.selected; VideoTrack.selected = true | false;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected`
(set-selected! this val)
Property.
The web.VideoTrack
property selected controls whether or not
particular video track is active.
`isVideoSelected = VideoTrack.selected;
VideoTrack.selected = true | false;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected
Property. The `web.VideoTrack` property selected controls whether or not particular video track is active. `isVideoSelected = VideoTrack.selected; VideoTrack.selected = true | false;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/selected`
(source-buffer this)
Property.
The read-only web.VideoTrack
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 = VideoTrack.sourceBuffer;
See also: https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/sourceBuffer
Property. The read-only `web.VideoTrack` 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 = VideoTrack.sourceBuffer;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/VideoTrack/sourceBuffer`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close