Einbinden von Videos in HTML
<video width="320" height="240" autoplay>
<source src="movie.mp4" type="video/mp4">
<source src="movie.webm" type="video/webm">
Your browser does not support the video tag.
</video>
Eine Steuerungsleiste im unteren Bereich des Videos kann mit dem
HTML5 Video Player von http://www.videojs.com/ erzeugt werden.
<html><head>
<script src="http://www.igpm.rwth-aachen.de/sites/all/libraries/video-js/video.js"></script>
<link href="http://www.igpm.rwth-aachen.de/sites/all/libraries/video-js/video-js.css" rel="stylesheet">
</head><body>
...
<video width="800" height="600" class="video-js vjs-default-skin" controls="controls" preload="auto" data-setup="{"example_option":true}">
<source src="xvidcap.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<
>