Estoy intentado poner en una web html5 un vídeo compatible con todos los navegadores html5 y los navegadores que no soportan html5.
El código para html5 creo que lo tengo bien, las líneas 'source src...'
Para verlo en navegadores que no soportan html5, utilizo la etiqueta object, pero no funciona. ¿Sabéis qué estoy haciendo mal?
Código HTML :
<video controls width="640" height="360" poster="img/brompton.jpg"> <source src="video/brompton.mp4" type="video/mp4"> <source src="video/brompton.webm" type='video/webm'> <source src="video/brompton.ogv" type="video/ogg"> <object type="application/x-shockwave-flash" width="640" height="360" data="player.swf?file=video/brompton.mp4"> <param name="movie" value="player.swf?file=video/brompton.mp4"> </object> </video>