Skip to content

Instantly share code, notes, and snippets.

@tripulse
Created August 25, 2018 10:47
Show Gist options
  • Save tripulse/459f49b0d409b14065c8e02beb39f0f7 to your computer and use it in GitHub Desktop.
Save tripulse/459f49b0d409b14065c8e02beb39f0f7 to your computer and use it in GitHub Desktop.
Invention of meme maker.
var video = document.querySelector("video");
function getRandom(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
setInterval(function() {
// video.playbackRate = getRandom(0.07, 1.5);
video.currentTime = getRandom(0, video.duration);
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment