Created
March 15, 2021 01:57
-
-
Save johnatandias/a333fd705f024733e78a4943e0645b8c to your computer and use it in GitHub Desktop.
Change video speed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const video = document.querySelector('video') | |
video.defaultPlaybackRate = 1.5 | |
video.playbackRate = 1.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment