So I am redesigning/updating an old site in html5. I have all my video working perfectly, but for some odd reason I can't get the poster image to show up. Am I missing something here? I have searched and searched but it seems that I am the only moron with this problem?
UPDATE: I have tried this on my test server(localhost) as well as in my working directory files on the computer. Nothing works.
<video width="640" height="360" controls poster="images/poster.jpg">
<source src="video.mp4" type="video/mp4" />
<source src="video.webm" type="video/webm" />
<source src="video.ogv" type="video/ogg" />
<!--Flash Fallback Blah Blah-->
</video>
?