Skip to content

Instantly share code, notes, and snippets.

@ryanlua
Created September 2, 2025 18:26
Show Gist options
  • Select an option

  • Save ryanlua/701eb4f27c105f3218e8e30f8cc5393c to your computer and use it in GitHub Desktop.

Select an option

Save ryanlua/701eb4f27c105f3218e8e30f8cc5393c to your computer and use it in GitHub Desktop.
Snippet for speeding up Edpuzzle videos to 5x which is the limit before Edpuzzle limits the speed. Paste this code into the console of a Edpuzzle video for it to work.
const videos = document.querySelectorAll("video");
videos.forEach((video) => {
try {
video.playbackRate = 5;
} catch (e) {
console.warn(`Could not set playback rate for video`, video, e);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment