The mediaelement player works successfully in all browsers (and the poster image shows), except the poster image does not show in IE8 (just black). Here's my code:
<video id="video" poster="http://www.-domain-.com/img/testImage.jpg" preload="none" controls="controls" width="240" height="220" >
<source type="video/mp4" src="http://www.-domain-.com/video/testVideo.mp4"/>
<object width="240" height="220" type="application/x-shockwave-flash" data="http://www.-domain-.com/mediaelement/flashmediaelement.swf">
<param name="movie" value="http://www.-domain-.com/mediaelement/flashmediaelement.swf" />
<param name="flashvars" value="controls=true&file=http://www.-domain-.com/video/testVideo.mp4" />
<!-- Image as a last resort -->
<img src="http://www.-domain-.com/img/testImage.jpg" width="240" height="220" title="No video playback capabilities" />
</object>
</video>
How can I get the poster image to appear in IE8? Any help will be greatly appreciated.