Si, deje muchos porque estaba haciendo muchas pruebas. En verdad se me hace raro que no funcione correctamente, voy a revisar nuevamente, pero esa página sólo tiene esa porción de código, después de eso redirecciona.
El código completo es este:
Código HTML:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Decodifica</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="all">
</head>
<body onload="redireccionar()">
<div id="content-video">
<video class="video-present" autoplay>
<source src="video/video.mp4" type="video/mp4">
<source src="video/video_VP8.webm" type="video/webm">
<source src="video/video_x264.mov" type="video/mov">
<source src="video/video_mpeg2video.mpg" type="video/mpg">
<source src="video/video_xvid.mkv" type="video/mkv">
<source src="video/video_libtheora.ogv" type="video/ogv">
¡Tu navegador no soporta reproducción de video!
</video>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script language="Javascript">
function redireccionar() { setTimeout("location.href='decodifica.html'", 5000); }
</script>
</body>
</html>
Gracias por los comentarios!! Saludos!