Is it possible to use js to start watching the video in the <video> tag in the opposite direction?
1 answer
var video = document.getElementById("videoPlayer"); video.playbackRate = -1;
The playbackRate
property is described here.
- Thank you - toliklunev
|