Last active
May 3, 2017 16:35
-
-
Save dela3499/31f1eea5039adff7c0e144b5c0b3492f to your computer and use it in GitHub Desktop.
Speed up videos
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
var vids = document.getElementsByTagName('video') | |
for( var i = 0; i < vids.length; i++ ){ | |
vids.item(i).playbackRate = 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment