Skip to content

Instantly share code, notes, and snippets.

@tytskyi
Created September 7, 2016 10:18
Show Gist options
  • Save tytskyi/102bbb1d2b9a60f9e0b2c0563fd61899 to your computer and use it in GitHub Desktop.
Save tytskyi/102bbb1d2b9a60f9e0b2c0563fd61899 to your computer and use it in GitHub Desktop.
Listen HTML5 audio book 2x faster.
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