This feature is not Baseline because it does not work in some of the most widely-used browsers.
The RemotePlayback interface of the Remote Playback API allows the page to detect availability of remote playback devices, then connect to and control playing on these devices.
Also inherits properties from its parent interface, EventTarget.
RemotePlayback.state Read only
Represents the RemotePlayback connection's state. One of:
"connecting"The user agent is attempting to initiate remote playback with the selected device.
"connected"The transition from local to remote playback has happened, all commands will now take place on the remote device.
"disconnected"The remote playback has not been initiated, has failed to initiate, or has been stopped.
Also inherits methods from its parent interface, EventTarget.
RemotePlayback.watchAvailability()Watches the list of available remote playback devices and returns a Promise that resolves with a callbackId of an available remote playback device.
RemotePlayback.cancelWatchAvailability()Cancels the request to monitor the availability of remote playback devices.
RemotePlayback.prompt()Prompts the user to select and give permission to connect to a remote playback device.
Also inherits events from its parent interface, EventTarget.
connectingFired when the user agent initiates remote playback.
connectFired when the user agent successfully connects to the remote device.
disconnectFired when the user agent disconnects from the remote device.
The following example demonstrates a player with custom controls that support remote playback. Initially the button used to select a device is hidden:
<video id="videoElement" src="https://example.org/media.ext"> <button id="deviceBtn" class="hidden">Pick device</button> </video>
.hidden {
display: none;
}
The RemotePlayback.watchAvailability() method is used to watch for available remote playback devices. If a device is available, use the callback to show the button.
const deviceBtn = document.getElementById("deviceBtn");
const videoElem = document.getElementById("videoElement");
function availabilityCallback(available) {
// Show or hide the device picker button depending on device availability.
if (available) {
deviceBtn.classList.remove("hidden");
} else {
deviceBtn.classList.add("hidden");
}
}
videoElem.remote.watchAvailability(availabilityCallback).catch(() => {
// If the device cannot continuously watch available,
// show the button to allow the user to try to prompt for a connection.
deviceBtn.classList.remove("hidden");
});
| Specification |
|---|
| Remote Playback API> # remoteplayback-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
RemotePlayback |
121 | 121 | No | 107 | 13.1 | 56 | No | 43 | 13.4 | 6.0 | No | 13.4 |
cancelWatchAvailability |
121 | 121 | No | 107 | 13.1 | 56 | No | 43 | 13.4 | 6.0 | No | 13.4 |
connect_event |
121 | 121 | No | 107 | 13.1 | 56 | No | 43 | 13.4 | 6.0 | No | 13.4 |
connecting_event |
121 | 121 | No | 107 | 13.1 | 56 | No | 43 | 13.4 | 6.0 | No | 13.4 |
disconnect_event |
121 | 121 | No | 107 | 13.1 | 56 | No | 43 | 13.4 | 6.0 | No | 13.4 |
prompt |
121 | 121 | No | 107 | 13.1 | 56 | No | 43 | 13.4 | 6.0 | No | 13.4 |
state |
121 | 121 | No | 107 | 13.1 | 56 | No | 43 | 13.4 | 6.0 | No | 13.4 |
watchAvailability |
121 | 121 | No | 107 | 13.1 | 56 | No | 43 | 13.4 | 6.0 | No | 13.4 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RemotePlayback