HTML5-now: video element

This example provides two sources for the content. Which source is played is dependent on the codecs you have installed on your operating system.

This is the markup for the above example:

<video width="640" height="360" poster="poster.jpg" controls>
 <source src="http://tinyvid.tv/vfe/big_buck_bunny.ogv" type="video/ogg"></source>
 <source src="http://tinyvid.tv/vfe/big_buck_bunny.mp4" type="video/mp4"></source>
</video>