According to this site, this is supported in the playbackRate
and defaultPlaybackRate
attributes, accessible via the DOM. But this is not working on mobile. Example:
<!DOCTYPE html>
<video id="my-video" src="chubby-bubbies.ogv" ...></video>
<script type="text/javascript">
/* play video twice as fast */
document.getElementById("my-video").defaultPlaybackRate = 2.0;
document.getElementById("my-video").play();
/* now play three times as fast just for the heck of it */
document.getElementById("my-video").playbackRate = 3.0;
</script>
The above works on Chrome, and also Firefox 20 and above on desktop.