MediaStreamTrack
The MediaStreamTrack interface represents a single media track within a stream; typically, these are audio or video tracks, but other track types may exist as well.
Documentation MediaStreamTrack by Mozilla Contributors, licensed under CC-BY-SA 2.5.
Instance Members
kind: StringReturns a DOMString set to "audio" if the track is an audio track and to "video", if it is a video track. It doesn't change if the track is deassociated from its source.
id: StringReturns a DOMString containing a unique identifier (GUID) for the track; it is generated by the browser.
label: StringReturns a DOMString containing a user agent-assigned label that identifies the track source, as in "internal microphone". The string may be left empty and is empty as long as no source has been connected. When the track is deassociated from its source, the label is not changed.
enabled: BoolA Boolean whose value of true if the track is enabled, that is allowed to render the media source stream; or false if it is disabled, that is not rendering the media source stream but silence and blackness. If the track has been disconnected, this value can be changed but has no more effect.
Note: You can implement standard "mute" functionality by setting enabled to false. The muted property refers to a condition in which there's no media because of a technical issue.
muted: BoolReturns a Boolean value indicating whether the track is unable to provide media data due to a technical issue.
Note: You can implement standard "mute" functionality by setting enabled to false, and unmute the media by setting it back to true again.
onmute: haxe.FunctionAn EventHandler containing the action to perform when an mute event is fired on the object, that is when the streaming is terminating.
onunmute: haxe.FunctionAn EventHandler containing the action to perform when an unmute event is fired on the object, that is when a MediaStreamTrack object is removed from it.
readyState: MediaStreamTrackStateReturns an enumerated value giving the status of the track. This will be one of the following values:
"live" which indicates that an input is connected and does its best-effort in providing real-time data. In that case, the output of data can be switched on or off using the MediaStreamTrack.enabled attribute.
"ended" which indicates that the input is not giving any more data and will never provide new data.
onended: haxe.FunctionAn EventHandler containing the action to perform when an ended_(MediaStream) event is fired on the object, that is when a MediaStreamTrack object is removed from it.
clone(): MediaStreamTrackReturns a duplicate of the MediaStreamTrack.
| Returns |
|---|
| MediaStreamTrack |
stop(): VoidStops playing the source associated to the track, both the source and the track are deassociated. The track state is set to ended.
getConstraints(): MediaTrackConstraintsReturns a MediaTrackConstraints object containing the currently set constraints for the track; the returned value matches the constraints last set using MediaStreamTrack.applyConstraints.
| Returns |
|---|
| MediaTrackConstraints |
getSettings(): MediaTrackSettingsReturns a MediaTrackSettings object containing the current values of each of the MediaStreamTrack's constrainable properties.
| Returns |
|---|
| MediaTrackSettings |
applyConstraints(?constraints: Null<MediaTrackConstraints>): js.lib.Promise<Void>Lets the application specify the ideal and/or ranges of acceptable values for any number of the available constrainable properties of the MediaStreamTrack.
| Name | Type | Default |
|---|---|---|
constraints |
Null<MediaTrackConstraints> | (optional) |
| Returns |
|---|
| js.lib.Promise<Void> |