mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-26 17:11:50 +01:00
Refactor video playback speed options
This commit is contained in:
parent
9f7432450b
commit
c3494c2f84
@ -93,12 +93,10 @@ export function KeyboardEvents() {
|
|||||||
|
|
||||||
// Video playback speed
|
// Video playback speed
|
||||||
if (k === ">" || k === "<") {
|
if (k === ">" || k === "<") {
|
||||||
const playbackRates = [0.25, 0.5, 1, 1.5, 2];
|
const options = [0.25, 0.5, 1, 1.5, 2];
|
||||||
const idx = playbackRates.indexOf(
|
const idx = options.indexOf(dataRef.current.mediaPlaying?.playbackRate);
|
||||||
dataRef.current.mediaPlaying?.playbackRate,
|
|
||||||
);
|
|
||||||
const nextIdx = idx + (k === ">" ? 1 : -1);
|
const nextIdx = idx + (k === ">" ? 1 : -1);
|
||||||
const next = playbackRates[nextIdx];
|
const next = options[nextIdx];
|
||||||
if (next) dataRef.current.display?.setPlaybackRate(next);
|
if (next) dataRef.current.display?.setPlaybackRate(next);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user