Created
September 2, 2025 18:26
-
-
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.
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
| 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