feat(player): support playback speeds up to 8x

close #1545
This commit is contained in:
edde746
2026-07-26 04:24:55 +02:00
parent 2a25f21e27
commit 3b1e71b3fa
12 changed files with 194 additions and 16 deletions
+3
View File
@@ -0,0 +1,3 @@
/// Inclusive playback-rate bounds supported by every in-app player backend.
const double minimumPlaybackRate = 0.25;
const double maximumPlaybackRate = 8.0;