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

45
mov.html Normal file
View file

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>QuickTime codecs test</title>
</head>
<body>
<h1>QuickTime codecs test</h1>
<p>MJPEG/MP3 in QuickTime</p>
<video id=flat controls width=640 height=360>
<source type="video/quicktime" src=polyphon-jpeg-mp3.mov>
</video>
<p>H.263/MP3 in QuickTime</p>
<video id=flat1 controls width=640 height=360>
<source type="video/quicktime" src=polyphon-h263-mp3.mov>
</video>
<p>H.263+/MP3 in QuickTime</p>
<video id=flat1b controls width=640 height=360>
<source type="video/quicktime" src=polyphon-h263p-mp3.mov>
</video>
<p>MPEG-1/MP3 in QuickTime</p>
<video id=flat2 controls width=640 height=360>
<source type="video/quicktime" src=polyphon-mpeg1-mp3.mov>
</video>
<p>MPEG-2/MP3 in QuickTime</p>
<video id=flat3 controls width=640 height=360>
<source type="video/quicktime" src=polyphon-mpeg2-mp3.mov>
</video>
<p>MPEG-4/MP3 in QuickTime</p>
<video id=flat4 controls width=640 height=360>
<source type="video/quicktime" src=polyphon-m4v-mp3.mov>
</video>
<p>H.264/MP3 in QuickTime</p>
<video id=flat5 controls width=640 height=360>
<source type="video/quicktime" src=polyphon-h264-mp3.mov>
</video>
</body>
</html>