aboutsummaryrefslogtreecommitdiffstats
path: root/video-controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'video-controller.js')
-rw-r--r--video-controller.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/video-controller.js b/video-controller.js
index fc4aa62..2a104f4 100644
--- a/video-controller.js
+++ b/video-controller.js
@@ -101,6 +101,9 @@ let INFO = xml`
},
seek: function (elem, value) {
elem.currentTime = timeCodeToSec(value);
+ },
+ playbackRate: function (elem, value) {
+ elem.playbackRate = value;
}
};