Adjust playback speed on Vimeo to watch videos faster

vimeo

Vimeo's player doesn't have any option to adjust play speed settings. Is there some way to watch content at a faster speed?

YouTube lets you adjust video play speed by clicking the gear icon and clicking on "speed" and Windows Media Player by View -> Enhancements -> Play Speed settings.

Best Answer

Create a bookmarklet with the following content:

javascript: var v = document.querySelector('video'); var t = prompt('Set the playback rate'); v.playbackRate = parseFloat(t)

Then simply launch the bookmarklet when playing a video on Vimeo and enter your desired playback speed.

Related Topic