Created
September 7, 2016 10:18
-
-
Save tytskyi/102bbb1d2b9a60f9e0b2c0563fd61899 to your computer and use it in GitHub Desktop.
Listen HTML5 audio book 2x faster.
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 __$$play = HTMLAudioElement.prototype.play; | |
HTMLAudioElement.prototype.play = function () { | |
this.playbackRate = 2; | |
return __$$play.apply(this, arguments); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment