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?
The playback speed setting is available on web browsers and the Netflix mobile app on Android and iOS devices. To adjust the speed of a TV show or movie: Tap on a TV show or movie while it's playing. Select the speed icon and choose the playback speed.
To accommodate slowed-down viewing, Netflix enables anybody using an Android smartphone to watch at speeds of either 0.5x or 0.75x for slowed-down viewing or 1.25x or 1.5x for quicker viewing.
To watch Netflix videos as fast or as slow as you want, first, you'll need to start playing any episode. As soon as the video starts playing, tap on the screen, and the Speed (1x) option at the bottom left. You can choose from five different options such as: 0.5x.
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}())
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With