MediaSession.setPositionState()
The MediaSession
method setPositionState()
is used to update the current document's media playback position and speed for presentation by user's device in any kind of interface that provides details about ongoing media. This can be particularly useful if your code implements a player for type of media not directly supported by the browser.
Call this method on the navigator
object's mediaSession
object.
Syntax
navigator.mediaSession.setPositionState(stateDict);
Parameters
-
stateDict
Optional -
An object providing updated information about the playback position and speed of the document's ongoing media. If the object is empty, the existing playback state information is cleared. This object is a dictionary that contains the following parameters:
duration
-
A floating-point value giving the total duration of the current media in seconds. This should always be a positive number, with positive infinity (
Infinity
) indicating media without a defined end, such as a live stream. playbackRate
-
A floating-point value indicating the rate at which the media is being played, as a ratio relative to its normal playback speed. Thus, a value of 1 is playing at normal speed, 2 is playing at double speed, and so forth. Negative values indicate that the media is playing in reverse; -1 indicates playback at the normal speed but backward, -2 is double speed in reverse, and so on.
position
-
A floating-point value indicating the last reported playback position of the media in seconds. This must always be a positive value.
Return value
Exceptions
TypeError
-
This error can occur in an array of circumstances:
- The specified object's
duration
is missing, negative, ornull
. - Its
position
is missing or null, or is either negative or greater thanduration
. - Its
playbackRate
is zero.
- The specified object's
Example
Below is a function which updates the position state of the current MediaSession
track.
function updatePositionState() { navigator.mediaSession.setPositionState({ duration: audioEl.duration, playbackRate: audioEl.playbackRate, position: audioEl.currentTime }); }
We can use this function when updating media session
metadata
and within callbacks for actions, such as below.
navigator.mediaSession.setActionHandler('seekbackward', details => { // our time to skip const skipTime = details.seekOffset || 10; // set our position audioEl.currentTime = Math.max(audioEl.currentTime - skipTime, 0); updatePositionState(); });
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
setPositionState |
73 |
≤79 |
82
71
|
No |
Yes |
15 |
No |
57 |
82
Firefox exposes the API, but does not provide a corresponding user-facing media control interface.
|
No |
15 |
7.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/MediaSession/setPositionState