Easy way to change youtube video playback speed
Chrome extension that enables changing YouTube video playback speed from 0 to 10 with a custom step.
The controls are integrated with the YouTube player in the form of:
- a draggable bar below the quality option in the player settings,
- numeric input
- by detecting pressed keys provided by the user (by default '-' or 'a' to subtract and '+' or 'd' to add).
New dynamic playback speed control in version 1.6.0!
The feature of dynamic video playback speed enables the playback speed to begin at a specified rate and then gradually increase until it reaches the desired rate at the specified duration percentage.
It has to be enabled in a settings!
Source code: https://github.com/MarekNowak250/Change-youtube-playback-speed-chrome-extension
Have any improvement suggestion? You can create an issue here:
https://github.com/MarekNowak250/Change-youtube-playback-speed-chrome-extension/issues
Latest reviews
- (2023-10-31) Ran Ro: dynamic playback speed video youtube chrome extension Request new feature for Video Speed Controller 1- set desired speed e.g. x3 2- select starting speed e.g. x1.5 3- % of video passed until desired speed is reach e.g. 60% The video begins at x1.5 and increases gradually as a function of time based on the duration of the video until it reaches 60% therein it will reaches x3 speed. e.g. at 60% of elapsed video duration it will be playbackRate = x1.5 + (x3 - x1.5) * (currentTime / duration) / 0.6 This formula means that the playback rate will start at x1.5 and increase linearly as a function of the current time divided by the duration of the video until it reaches 60% of the duration, where it will reach x3.