5

Netflix doesn't provide control for the playback rate in its user interface.

What should I put in the google chrome console to set the playback rate that I want?

2 Answers 2

10

If you want the video to go twice as fast you set it to

document.querySelector('video').playbackRate = 2

If you want half the speed you set it to

document.querySelector('video').playbackRate = 0.5

If you want the normal speed back you set it to

document.querySelector('video').playbackRate = 1

You can add this as a bookmark url so you don't need to open the console anymore, just click on the bookmark to change the speed :

javascript:(function(){document.querySelector('video').playbackRate = 2}())
javascript:(function(){document.querySelector('video').playbackRate = 0.5}())
javascript:(function(){document.querySelector('video').playbackRate = 1}())

enter image description here

0

document.getElementsByTagName("video")[0].playbackRate = 2

also works!

Not the answer you're looking for? Browse other questions tagged or ask your own question.