DEV Community

Cover image for How to Speed Up Netflix Without Installing Anything
Michael MacTaggert
Michael MacTaggert

Posted on

How to Speed Up Netflix Without Installing Anything

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

document.querySelector('video').playbackRate = 1.5;

document.querySelector('video').playbackRate = 2.0;

document.querySelector('video').playbackRate = 3.0;
Enter fullscreen mode Exit fullscreen mode

I don't want to install anything just to speed up Netflix. If you do, there are options. For my part, whenever I move to a new computer, I look up this incantation. I'm posting it myself to speed that up next time.

Open your browser's inspection tool to get to the JavaScript console, then enter this line of code with a number corresponding to the speed. 2.0 or 2 is 2x speed. It takes any non-negative number, including numbers between 0 and 1 to slow down the video. (0 pauses playback.) It also works for any HTML5 video, not just Netflix. The 'video' string is the default name and extremely common, although the website can change it to something else.

The real solution to this problem is Netflix exposing the HTML5 speed controls through their interface, but they are ghouls who refuse to do that. Likewise, there are creeps in Hollywood who insist they have some fictional right to make you watch TV at 1x speed against your will, and they lobby Netflix to prevent this functionality that already exists. They're making choices for you, and they are choosing to waste your life away. Be the lowest-tier cyberpunk you can be and take your time back from these monsters. At least, when you want to.

Top comments (4)

Collapse
 
jenc profile image
Jen Chan

This is a nice little hack, could be helpful under the #todayilearned category!

Collapse
 
lethargilistic profile image
Michael MacTaggert

Alas, it is not new to me. :p

Collapse
 
jenc profile image
Jen Chan

Yeah maybe it isn't, but just suggested the tags to bring your post to more viewers!

Collapse
 
redeving profile image
Kelvin Thompson

Slick, thanks bunches! 😃