hls-test/vp8.html

43 lines
1.4 KiB
HTML
Raw Normal View History

2022-06-26 21:19:06 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>Flat VP8 tests</title>
</head>
<body>
<h1>Flat WebM test</h1>
<p>WebM VP8/Vorbis marked as such:</p>
2023-02-13 22:05:37 +00:00
<video controls width=640 height=360>
2022-06-26 21:19:06 +00:00
<source type="video/webm; codecs=&quot;vp8, vorbis&quot;" src=polyphon-vp8-vorbis.webm>
</video>
<p>WebM VP8/Vorbis unmarked:</p>
2023-02-13 22:05:37 +00:00
<video controls width=640 height=360 src=polyphon-vp8-vorbis.webm>
</video>
<p>WebM VP8 (no audio) marked as such:</p>
<video controls width=640 height=360>
<source type="video/webm; codecs=&quot;vp8&quot;" src=polyphon-vp8.webm>
2022-06-26 21:19:06 +00:00
</video>
<p>WebM VP8 (no audio) unmarked:</p>
2023-02-13 22:05:37 +00:00
<video controls width=640 height=360 src=polyphon-vp8.webm>
2022-06-26 21:19:06 +00:00
</video>
2023-02-13 22:05:37 +00:00
<p>MP4 VP8 (no audio), marked as vp8 (expected to fail):</p>
<video controls width=640 height=360>
2022-06-26 21:19:06 +00:00
<source type="video/mp4; codecs=&quot;vp8&quot;" src=polyphon-vp8.mp4>
</video>
<p>MP4 VP8 (no audio), marked as vp08:</p>
2023-02-13 22:05:37 +00:00
<video controls width=640 height=360>
2022-06-26 21:19:06 +00:00
<source type="video/mp4; codecs=&quot;vp08&quot;" src=polyphon-vp8.mp4>
</video>
<p>MP4 VP8 (no audio), unmarked:</p>
2023-02-13 22:05:37 +00:00
<video controls width=640 height=360 src=polyphon-vp8.mp4>
2022-06-26 21:19:06 +00:00
</video>
</body>
</html>