initial commit

This commit is contained in:
Brooke Vibber 2021-10-22 11:27:02 -07:00
commit 68691c29ad
227 changed files with 375909 additions and 0 deletions

20
with-audio.html Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>HLS WebM test with audio</title>
</head>
<body>
<h1>HLS WebM test with audio</h1>
<p>The video will try to load an HLS containing an VP9-in-MP4 variant and a h264 fallback, and AAC audio:</p>
<video id=hls1 controls width=640 height=360>
<source type=application/vnd.apple.mpegurl src=av-aac-mp4.m3u8>
</video>
<h1>HLS WebM test with audio</h1>
<p>VP9-in-MP4 variant and a h264 fallback, and MP3 audio:</p>
<video id=hls2 controls width=640 height=360>
<source type=application/vnd.apple.mpegurl src=av-all-mp4.m3u8>
</video>
</body>
</html>