Skip to content

Instantly share code, notes, and snippets.

@Markieta
Last active February 27, 2019 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Markieta/b0424cc8efaed8635d7a4a111847d6ad to your computer and use it in GitHub Desktop.
Save Markieta/b0424cc8efaed8635d7a4a111847d6ad to your computer and use it in GitHub Desktop.
Increase playback rate of all audio and video elements in an HTML document.
for (let media of document.querySelectorAll("audio,video")) { media.playbackRate = 2 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment