I have a video-tag with the following attributes:
<video width="xx" height="xx" poster="image.jpg" preload="auto">
I need the poster-image to show and I want the video to preload.
I don't show the browser's controls but control the video manually with custom controls (CSS & Javascript). The video is supposed to start when I click on it.
In Firefox this works as intended: I click on the poster-image and the video starts. I click on the video, the video stops.
On current webkit-browsers (Safari 6.0.2, Chrome 23.0.1271.64) however this does not work:
As soon as I click on the poster image the video becomes invisible, leaving me with a blank (white) box. I hear the sound but can see the video. When I click on that box, the sound stops.
If I set either preload="none"
or leave the poster-image, this works in webkit-browsers again.
Is there any known workaround for this?