Skip to content

Instantly share code, notes, and snippets.

@chrisgilmerproj
Created September 13, 2024 16:54
Show Gist options
  • Save chrisgilmerproj/f065d4adcd2409a2c77c39ebf159fc23 to your computer and use it in GitHub Desktop.
Save chrisgilmerproj/f065d4adcd2409a2c77c39ebf159fc23 to your computer and use it in GitHub Desktop.
video speedup
[...document.querySelectorAll('video')].filter(video => !!(video.currentTime > 0 && !video.paused && !video.ended && video.readyState > 2)).forEach(video=> video.playbackRate = 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment