Created
September 27, 2020 02:28
-
-
Save ehsansabet/6d0c32404cdedccd26387fad7a062bcc to your computer and use it in GitHub Desktop.
Useful JS
This file contains hidden or 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
/* play video twice as fast */ | |
document.querySelector('video').defaultPlaybackRate = 2.0; | |
document.querySelector('video').play(); | |
/* now play three times as fast just for the heck of it */ | |
document.querySelector('video').playbackRate = 3.0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment