Quote:
Originally Posted by StinkyPink
I thought playing video in HTML5 across devices was supposed to be simple. Then why is it that no matter what different markup I use, I still get shady results on at least 3 of 5 browsers. So far this is by far the best I have come up with but still not working great for me.
Generated with Dreamweaver CS6
Code:
<video id="video1" width="640" height="480" poster="thumb.png" controls >
<source src="video.mp4" type="video/mp4">
<source src="video.ogg" type="video/ogg">
<source src="video.webm" type="video/webm">
<embed src="video.f4v" type="application/x-shockwave-flash" />
</video>

|
What goes wrong when you use that code?