top | item 11208671

(no title)

namocat | 10 years ago

It's an HTML5 video, so you can adjust the speed with JS if you can get the right element. e.g. to set the playback speed to 120%, you can do:

  document.getElementsByTagName('video')[0].playbackRate = 1.2;
in the JS console.

discuss

order

tm33|10 years ago

This is genius!

imh|10 years ago

God I love this forum. Thank you!