MediaSession.setPositionState() - Web APIs 编辑
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 conforming to the
MediaPositionState
dictionary, 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.
Return value
Exceptions
TypeError
This error can occur in an array of circumstances:
- The specified
MediaPositionState
object'sduration
is missing, negative, ornull
. position
is missing or null, or is either negative or greater thanduration
.- The
playbackRate
is zero.
- The specified
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
Specification | Status | Comment |
---|---|---|
Media Session Standard The definition of 'MediaSession.setPositionState()' in that specification. | Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论