Our volunteers haven't translated this article into Čeština yet. Join us and help get the job done!
Summary
The MediaStream interface represents a stream of media content. A stream consists of several tracks, like video or audio tracks.
Properties
MediaStreamTrack.enabled- Is a Boolean value with a value of
trueif the track is enabled, that is allowed to render the media source stream; orfalseif 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. MediaStreamTrack.idRead only- Returns a
DOMStringcontaining a unique identifier (GUID) for the track; it is generated by the browser. MediaStreamTrack.kindRead only- Returns a
DOMStringset 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. MediaStreamTrack.labelRead only- Returns a
DOMStringcontaining 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. MediaStreamTrack.mutedRead only- Returns a Boolean value with a value of
trueif the track is muted,falseotherwise. MediaStreamTrack.readonlyRead only- Returns a Boolean value with a value of
trueif the track is readonly (such a video file source or a camera that settings can't be modified),falseotherwise. MediaStreamTrack.readyStateRead only- Returns an enumerated value giving the status of the track.It takes 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 theMediaStreamTrack.enabledattribute."ended"which indicates that the input is not giving any more data and will never provide new data.
MediaStreamTrack.remoteRead only- Returns a boolean value with a value of
trueif the track is sourced by aRTCPeerConnection,falseotherwise.
Event handlers
MediaStreamTrack.onstarted- Is a
EventHandlercontaining the action to perform when anstartedevent is fired on the object, that is when a newMediaStreamTrackobject is added. MediaStreamTrack.onmute- Is a
EventHandlercontaining the action to perform when anmuteevent is fired on the object, that is when the streaming is terminating. MediaStreamTrack.onunmute- Is a
EventHandlercontaining the action to perform when anunmuteevent is fired on the object, that is when aMediaStreamTrackobject is removed from it. MediaStreamTrack.onoverconstrained- Is a
EventHandlercontaining the action to perform when anoverconstrainedevent is fired on the object, that is when aMediaStreamTrackobject is removed from it. MediaStreamTrack.oneended- Is a
EventHandlercontaining the action to perform when anendedevent is fired on the object, that is when aMediaStreamTrackobject is removed from it.
Methods
MediaStreamTrack.getConstraints()MediaStreamTrack.applyConstraints()MediaStreamTrack.getSettings()MediaStreamTrack.getCapabilities()MediaStreamTrack.clone()MediaStreamTrack.stop()- Stops playing the source associated to the track, both the source and the track are deassociated. The track state is set to
ended.
Specifications
| Specification | Status | Comment |
|---|---|---|
| Media Capture and Streams The definition of 'MediaStreamTrack' in that specification. |
Candidate Recommendation | Initial definition |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | Not supported | Not supported | ? |
stop() |
? | 34 (34) | ? | ? | ? |
muted, onmuted, onunmuted, readonly, readyState, remote, onstarted, onended, onoverconstrained, appendConstraint(), applyConstraints(), constraints(), getConstraints() |
? | Not supported | Not supported | Not supported | ? |
| Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | ? | (Yes) | Not supported | Not supported | ? |
stop() |
? | 34 (34) | ? | ? | ? |
muted, onmuted, onunmuted, readonly, readyState, remote, onstarted, onended, onoverconstrained, appendConstraint(), applyConstraints(), constraints(), getConstraints() |
? | Not supported | Not supported | Not supported | ? |