Results 61 - 80 of 130

WebRTC API overview

WebRTC consists of several interrelated APIs and protocols which work together to support the exchange of data and media between two or more peers. This article provides a brief overview of each of these APIs and what purpose it serves.
API Audio Guide Intro Media Video WebRTC

WebRTC protocols

This article introduces the protocols on top of which the WebRTC API is built.
API Audio Beginner Guide Media Video WebRTC

LocalMediaStream

The LocalMediaStream interface represents a stream of media content fetched from a local data source. This is the interface returned by getUserMedia().
API DOM DOM Reference Experimental Expérimental Interface Reference Référence WebRTC

MediaStream

The MediaStream interface represents a stream of media content. A stream consists of several tracks such as video or audio tracks. Each track is specified as an instance of MediaStreamTrack.
API Interface Media Streams API MediaStream Reference WebRTC

MediaStream.getTrackById()

The MediaStream.getTrackById() method returns a MediaStreamTrack object representing the track with the specified ID string. If there is no track with the specified ID, this method returns null.
getTrackById Media MediaStream MediaStream API Method Reference WebRTC

MediaStreamTrack.enabled

The MediaStreamTrack.enabled property returns a Boolean with a 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 effect.
enabled Media MediaStreamTrack Property Read-only Reference WebRTC

MediaStreamTrack.onunmute

The MediaStreamTrack.onunmute event handler is a property called when the unmute event is received. Such an event is sent when the track is again able to send data.
API Event Handler MediaStreamTrack Property Reference Référence WebRTC

MediaStreamTrack.stop()

The MediaStreamTrack.stop() method stops playing the source associated with the track. Both the source and the track are deassociated. The track state is set to ended.
API Media Stream API MediaStreamTrack Method Reference Référence stop WebRTC

RTCCertificate

The interface of the the WebRTC API provides an object represents a certificate that an RTCPeerConnection uses to authenticate.
API Interface real-time communications Reference RTCCertificate WebRTC