Added playback rates up to 4

This commit is contained in:
WardPearce
2026-02-16 21:06:14 +13:00
parent aff6baafb7
commit ae5b3398ea
+3 -1
View File
@@ -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) {