brozzler/tests/htdocs/site6/index.html

19 lines
511 B
HTML
Raw Normal View History

2017-03-20 12:33:52 -07:00
<html>
<head>
<title>video test</title>
</head>
<body>
<!--
videos are from
http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5
-->
2017-11-08 17:01:27 -08:00
<video autoplay="" muted="" id="vid1" loop="">
2017-03-20 12:33:52 -07:00
<source src="small.webm" type="video/webm">
<source src="small.mp4" type="video/mp4">
2017-11-08 17:01:27 -08:00
</video>
<video autoplay="" muted="" id="vid2" loop="">
<source src="small.mpd">
2017-03-20 12:33:52 -07:00
</video>
</body>
</html>