Created
March 7, 2020 13:20
-
-
Save gotbahn/998de221601757a15f01a8ebbac6aae6 to your computer and use it in GitHub Desktop.
Media Session. Control Position
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (window.navigator.mediaSession?.setPositionState) { | |
window.navigator.mediaSession.setPositionState({ | |
duration: /* duration in seconds */, | |
position: /* position from 0 in seconds */, | |
playbackRate: 1, | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment