From ae5b3398ea17c464473d92c23245d83c2334e399 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Mon, 16 Feb 2026 21:06:14 +1300 Subject: [PATCH] Added playback rates up to 4 --- materialious/src/lib/player.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/materialious/src/lib/player.ts b/materialious/src/lib/player.ts index b2901fad..8d7d68dc 100644 --- a/materialious/src/lib/player.ts +++ b/materialious/src/lib/player.ts @@ -24,7 +24,9 @@ export interface PlayerEvents { events: PlayerEvent[]; } -export const playbackRates = [0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3]; +export const playbackRates = [ + 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3, 3.25, 3.5, 3.75, 4 +]; export const playerDoubleTapSeek = 10.0; export function goToPreviousVideo(playlistId: string | null) {