From 5d047d3450a09c80a4cca06d431b900016b65a89 Mon Sep 17 00:00:00 2001 From: Evan Carroll Date: Tue, 19 Sep 2023 17:19:08 -0500 Subject: [PATCH] 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 --- src/plugins/htmlVideoPlayer/plugin.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/plugins/htmlVideoPlayer/plugin.js b/src/plugins/htmlVideoPlayer/plugin.js index 194678b7e..5f20eb116 100644 --- a/src/plugins/htmlVideoPlayer/plugin.js +++ b/src/plugins/htmlVideoPlayer/plugin.js @@ -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 }]; }