Increase Video Speed Html5

how to set video speed html
/* play video twice as fast */
document.querySelector('video').defaultPlaybackRate = 2.0;
document.querySelector('video').play();

/* now play three times as fast just for the heck of it */
document.querySelector('video').playbackRate = 3.0;
increase video speed html5
document.querySelector('video').playbackRate = 1.25;
increase playback speed stack overflow
javascript:document.getElementsByClassName("video-stream html5-main-video")[0].playbackRate = 0.1;

Leave a Comment