This commit is contained in:
Brooke Vibber 2022-06-06 15:38:07 -07:00
commit 48b98f8cfb
60 changed files with 2719 additions and 0 deletions

40
mp4.html Normal file
View file

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>MP4 codecs test</title>
</head>
<body>
<h1>MP4 codecs test</h1>
<p>MJPEG/MP3 in MP4</p>
<video id=flat controls width=640 height=360>
<source type="video/mp4" src=polyphon-jpeg-mp3.mp4>
</video>
<p>MPEG-1/MP3 in MP4</p>
<video id=flat2 controls width=640 height=360>
<source type="video/mp4" src=polyphon-mpeg1-mp3.mp4>
</video>
<p>MPEG-2/MP3 in MP4</p>
<video id=flat3 controls width=640 height=360>
<source type="video/mp4" src=polyphon-mpeg2-mp3.mp4>
</video>
<p>MPEG-4/MP3 in MP4</p>
<video id=flat4 controls width=640 height=360>
<source type="video/mp4" src=polyphon-m4v-mp3.mp4>
</video>
<p>H.264/MP3 in MP4</p>
<video id=flat5 controls width=640 height=360>
<source type="video/mp4" src=polyphon-h264-mp3.mp4>
</video>
<p>VP9/MP3 in MP4</p>
<video id=flat6 controls width=640 height=360>
<source type="video/mp4" src=polyphon-vp9-mp3.mp4>
</video>
</body>
</html>