Is it possible to play HTML5 video in reverse?

Ish picture Ish · Mar 11, 2011 · Viewed 33.3k times · Source

Is HTML5 <video> tag be play video in reverse, or I have to download 2 videos (forward and backword play). Any solution that avoid user from downloading 2 videos?

Answer

Fr&#233;d&#233;ric Hamidi picture Frédéric Hamidi · Mar 11, 2011

Without even going into HTML5 or Javascript, many video formats are streaming formats that are designed to be played forward. Playing it backwards would require decoding the whole stream, storing each raw frame on the disk to avoid clobbering memory, then rendering the frames backwards.

At least one person actually tried that using mplayer, though, so it can be done, at least in principle.