Is it possible to use js to start watching the video in the <video> tag in the opposite direction?

    1 answer 1

    var video = document.getElementById("videoPlayer"); video.playbackRate = -1; 

    The playbackRate property is described here.

    • Thank you - toliklunev