In Firefox the image specified by the poster attribute of the VIDEO
tag remains on screen until the play button is pressed. However in the Webkit browsers (Safari and Chrome) the poster is dumped in favor of the first frame from the video as soon as the video metadata is fetched.
I want to avoid having to place the poster on top of the video element manually if I could. Does anyone know of a fix for this?
<video src="some_url" poster="images/poster.jpg">
<source type="video/ogg" src="some_url" />
</video>