Properties:
Name | Type | Description |
---|---|---|
isEnabled |
boolean | Whether the RemoteVideoTrack is enabled |
isSwitchedOff |
boolean | Whether the RemoteVideoTrack is switched off |
sid |
Track.SID | The RemoteVideoTrack's SID |
Fires:
Extends
Methods
-
attach()
-
Create an HTMLVideoElement and attach the VideoTrack to it.
The HTMLVideoElement's
srcObject
will be set to a new MediaStream containing the VideoTrack's MediaStreamTrack.- Inherited From:
- Overrides:
Returns:
videoElement
- Type
- HTMLVideoElement
Example
const Video = require('twilio-video'); Video.createLocalVideoTrack().then(function(videoTrack) { const videoElement = videoTrack.attach(); document.body.appendChild(videoElement); });
-
detach()
-
Detach the VideoTrack from all previously attached HTMLMediaElements.
- Inherited From:
- Overrides:
Returns:
mediaElements
- Type
- Array.<HTMLMediaElement>
Example
const mediaElements = videoTrack.detach(); mediaElements.forEach(mediaElement => mediaElement.remove());
Events
-
dimensionsChanged
-
The RemoteVideoTrack's dimensions changed.
Parameters:
Name Type Description track
RemoteVideoTrack The RemoteVideoTrack whose dimensions changed
- Overrides:
-
disabled
-
The RemoteVideoTrack was disabled, i.e. "paused".
Parameters:
Name Type Description track
RemoteVideoTrack The RemoteVideoTrack that was disabled
- Overrides:
-
enabled
-
The RemoteVideoTrack was enabled, i.e. "unpaused".
Parameters:
Name Type Description track
RemoteVideoTrack The RemoteVideoTrack that was enabled
- Overrides:
-
started
-
The RemoteVideoTrack started. This means there is enough video data to begin playback.
Parameters:
Name Type Description track
RemoteVideoTrack The RemoteVideoTrack that started
- Overrides:
-
switchedOff
-
A RemoteVideoTrack was switched off.
Parameters:
Name Type Description track
RemoteVideoTrack The RemoteVideoTrack that was switched off
-
switchedOn
-
A RemoteVideoTrack was switched on.
Parameters:
Name Type Description track
RemoteVideoTrack The RemoteVideoTrack that was switched on