Skip to content

Instantly share code, notes, and snippets.

@ehsansabet
Created September 27, 2020 02:28
Show Gist options
  • Save ehsansabet/6d0c32404cdedccd26387fad7a062bcc to your computer and use it in GitHub Desktop.
Save ehsansabet/6d0c32404cdedccd26387fad7a062bcc to your computer and use it in GitHub Desktop.
Useful JS
/* 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