Skip duration multiply by playback rate

Fast Forward/Backward like YouTube. The skip duration is multiplied by playback rate.
This commit is contained in:
138138138 2021-02-17 21:33:26 +08:00 committed by GitHub
parent 26ce0eb4b9
commit 3b484c362e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -430,17 +430,17 @@ window.addEventListener('keydown', e => {
case 'ArrowRight': case 'ArrowRight':
case 'MediaFastForward': case 'MediaFastForward':
action = skip_seconds.bind(this, 5); action = skip_seconds.bind(this, 5 * player.playbackRate());
break; break;
case 'ArrowLeft': case 'ArrowLeft':
case 'MediaTrackPrevious': case 'MediaTrackPrevious':
action = skip_seconds.bind(this, -5); action = skip_seconds.bind(this, -5 * player.playbackRate());
break; break;
case 'l': case 'l':
action = skip_seconds.bind(this, 10); action = skip_seconds.bind(this, 10 * player.playbackRate());
break; break;
case 'j': case 'j':
action = skip_seconds.bind(this, -10); action = skip_seconds.bind(this, -10 * player.playbackRate());
break; break;
case '0': case '0':