<!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> <video controls width=640 height=360> <source type="video/webm; codecs="vp8, vorbis"" src=polyphon-vp8-vorbis.webm> </video> <p>WebM VP8/Vorbis unmarked:</p> <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="vp8"" src=polyphon-vp8.webm> </video> <p>WebM VP8 (no audio) unmarked:</p> <video controls width=640 height=360 src=polyphon-vp8.webm> </video> <p>MP4 VP8 (no audio), marked as vp8 (expected to fail):</p> <video controls width=640 height=360> <source type="video/mp4; codecs="vp8"" src=polyphon-vp8.mp4> </video> <p>MP4 VP8 (no audio), marked as vp08:</p> <video controls width=640 height=360> <source type="video/mp4; codecs="vp08"" src=polyphon-vp8.mp4> </video> <p>MP4 VP8 (no audio), unmarked:</p> <video controls width=640 height=360 src=polyphon-vp8.mp4> </video> </body> </html>