Kan je op je website een mp4 filmpje laten afspelen?
en hoe doe je dat?
thanks

[size=xsmall]Toevoeging op 12/04/2015 19:17:06:[/size]

Waarom werkt dit niet? Wat doe ik fout?


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Trailer</title>

<style type="text/css">
html, body, #wrapper {
      height:100%;
      margin: 0;
      padding: 0;
      border: none;
      text-align: center;
      background: #000000;
   }
#wrapper {
      margin: 0 auto;
      text-align: left;
      vertical-align: middle;
      width: 400px;
   }
</style>
</head>

</head>

<body>
   <table id="wrapper">
      <tr> 
<td>
<video width="320" height="240" autoplay>
  <source src="movie.mp4" type="video/mp4">
Je browser ondersteund onze video niet.
</video>
</td>
      </tr>
   </table>
   </body>
</html>

Kan je deze tussen codetags plaatsen?
- Bestaat movie.mp4 wel?
- Gebruik HTML5 doctype
movie.mp4 bestaat,
html5 doctype werkt niet.
Moet ik movie.mp4 op andere folder ofzo zetten?
Gebruik je een oudere browser?

Reageren