mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-02-24 16:49:56 -05:00
19 lines
511 B
HTML
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>
|