Skip to content

Instantly share code, notes, and snippets.

@neilser
Forked from dimapaloskin/Netflix.seek.js
Created August 22, 2021 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neilser/32f5fbe8a9671083a3f519cd199269ce to your computer and use it in GitHub Desktop.
Save neilser/32f5fbe8a9671083a3f519cd199269ce to your computer and use it in GitHub Desktop.
Netflix seek
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