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.

2016-08-07 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
drhouse
평점
0 0 0
버전
3.0
생성
2015-09-08
갱신
2016-08-07
라이선스
없음
동작 사이트


08/07/16 Correct initial speed display update, instead of displaying '1.00' by default on page load
11/21/15 Update: now also works with external site embedded YouTube videos
For embedded videos - just click once anywhere inside the embedded YouTube player to give it key focus for the script to work

YouTube Video Speed & Seek Mouse Control

Uses YouTube's HTML5 player and your 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)

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