brozzler/tests/htdocs/site6/index.html
2017-11-08 17:01:27 -08:00

19 lines
511 B
HTML

<html>
<head>
<title>video test</title>
</head>
<body>
<!--
videos are from
http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5
-->
<video autoplay="" muted="" id="vid1" loop="">
<source src="small.webm" type="video/webm">
<source src="small.mp4" type="video/mp4">
</video>
<video autoplay="" muted="" id="vid2" loop="">
<source src="small.mpd">
</video>
</body>
</html>