Skip to content

Instantly share code, notes, and snippets.

@dimapaloskin
Created October 18, 2017 18:32
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dimapaloskin/e268e5356df160599244418d256e3f4e to your computer and use it in GitHub Desktop.
Save dimapaloskin/e268e5356df160599244418d256e3f4e 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