Remove black load flash on HTML5 video Remove black load flash on HTML5 video google-chrome google-chrome

Remove black load flash on HTML5 video


The Poster section of this blog post indicates the following:

"If you do not specify a poster image the browser may just display a black box filling the dimensions of the element."

So you can't seem to fix this by simply adding a background-color of white to the video element... but you can add a simple white poster image like so:

<video width="320" height="240" autoplay="" poster="http://dummyimage.com/320x240/ffffff/fff" >  <source src="http://testingfortagpro.meximas.com/movie2.mp4" type="video/mp4"></video>