1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add speeds for 2.5x 3x 3.5x 4x

Changes: Increase max playback speeds. Adds speeds between 2x-4x in 0.5x
increments

Feature request: 1916
This commit is contained in:
Evan Carroll 2023-09-19 17:19:08 -05:00
parent cbbf806037
commit 5d047d3450

View file

@ -1978,6 +1978,18 @@ export class HtmlVideoPlayer {
}, {
name: '2x',
id: 2.0
}, {
name: '2.5x',
id: 2.5
}, {
name: '3x',
id: 3.0
}, {
name: '3.5x',
id: 3.5
}, {
name: '4.0x',
id: 4.0
}];
}