Greasy Fork is available in English.

YouTube Video Speed & Seek Mouse Control

Dynamically adjust video playback speed & seeking instantly with your mousewheel, no more need to go through player menus every time.

Forfatter
drhouse
Daglige installasjoner
0
Totale installasjoner
1 281
Vurderinger
7 0 0
Versjon
4.0
Lagd
08.09.2015
Oppdatert
16.12.2016
Lisens
I/T
Gjelder


12/12/16 Fixed seeking forward, I think Chrome changed something right when this script was promoted to front page lol
08/07/16 Correct initial speed display, instead of always displaying '1.00' on page load
11/21/15 Update: now also works with external site embedded YouTube videos

YouTube Video Speed & Seek Mouse Control

Uses YouTube's HTML5 player and the mouse scrollwheel to control playback:
hold 'shift + wheelup / wheeldown' to 'jump forward / back' (seek +/- 5 seconds, 10s embeds)
hold 'alt + wheelup / wheeldown' to 'speed up / down' (speed +/- 0.25 rate)

For embedded videos - just click once anywhere inside the embedded YouTube player to give it key focus for the script to work
Works on both normal and fullscreen player.
A small text display will appear above the top-right of the video to indicate current playback speed.

VLC Player Video Speed & Seek Mouse Control

I also wrote a version that works with VLC Player for when watching local videos. It uses Autohotkey (a free utility program), copy/paste the code below into a blank text file, save as (for example) "vlc_mousecontrol.ahk" and double-click the file to run. It uses the same shift/alt + mousewheel controls as 'YouTube Video Speed & Seek Mouse Control' listed above:
#IfWinActive ahk_class QWidget

+WheelUp::  
Send +{Right};
return

+WheelDown:: 
Send +{Left};
return

!WheelUp::
Send {NumpadAdd};
return

!WheelDown::
Send {NumpadSub};
return

Buy me a coffee at ko-fi.com