-
-
Save Venryx/f6d905a62f335d1bddc61f2f2fe8b272 to your computer and use it in GitHub Desktop.
Netflix seek
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
const videoPlayer = netflix | |
.appContext | |
.state | |
.playerApp | |
.getAPI() | |
.videoPlayer; | |
// Getting player id | |
const videoPlayer = videoPlayer | |
.getAllPlayerSessionIds()[0] | |
const player = videoPlayer | |
.getVideoPlayerBySessionId(playerSessionId) | |
const currentTime = player.getCurrentTime() | |
player.seek(currentTime - 1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment