Skip to content

Commit

Permalink
[e] (0) Make the markup prettier in the examples.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3352 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jul 2, 2009
1 parent 7d92781 commit 004ac5a
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 47 deletions.
49 changes: 25 additions & 24 deletions index
Expand Up @@ -67,7 +67,7 @@
<div class=head>
<p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<h1>HTML 5</h1>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 1 July 2009</h2>
<h2 class="no-num no-toc" id=draft-standard-&mdash;-date:-01-jan-1901>Draft Standard &mdash; 2 July 2009</h2>
<p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
Expand Down Expand Up @@ -19783,84 +19783,84 @@ interface <dfn id=htmlaudioelement>HTMLAudioElement</dfn> : <a href=#htmlmediael
<p>The following list shows some examples of how to use the <code title="">codecs=</code> MIME parameter in the <code title=attr-source-type><a href=#attr-source-type>type</a></code> attribute.</p>

<dl><dt>H.264 Simple baseline profile video (main and extended video compatible) level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;avc1.42E01E, mp4a.40.2&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'&gt;</pre></dd>

<dt>H.264 Extended profile video (baseline-compatible) level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;avc1.58A01E, mp4a.40.2&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="avc1.58A01E, mp4a.40.2"'&gt;</pre></dd>

<dt>H.264 Main profile video level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;avc1.4D401E, mp4a.40.2&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="avc1.4D401E, mp4a.40.2"'&gt;</pre></dd>

<dt>H.264 "High" profile video (incompatible with main, baseline, or extended profiles) level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;avc1.64001E, mp4a.40.2&amp;quot;"&gt;</pre></dd>
<dt>H.264 'High' profile video (incompatible with main, baseline, or extended profiles) level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="avc1.64001E, mp4a.40.2"'&gt;</pre></dd>


<dt>MPEG-4 Visual Simple Profile Level 0 video and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;mp4v.20.8, mp4a.40.2&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="mp4v.20.8, mp4a.40.2"'&gt;</pre></dd>

<dt>MPEG-4 Advanced Simple Profile Level 0 video and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;mp4v.20.240, mp4a.40.2&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="mp4v.20.240, mp4a.40.2"'&gt;</pre></dd>

<dt>MPEG-4 Visual Simple Profile Level 0 video and AMR audio in 3GPP container</dt>
<dd><pre>&lt;source src="video.3gp" type="video/3gpp; codecs=&amp;quot;mp4v.20.8, samr&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.3gp' type='video/3gpp; codecs="mp4v.20.8, samr"'&gt;</pre></dd>


<dt>Theora video and Vorbis audio in Ogg container</dt>
<dd><pre>&lt;source src="video.ogv" type="video/ogg; codecs=&amp;quot;theora, vorbis&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.ogv' type='video/ogg; codecs="theora, vorbis"'&gt;</pre></dd>

<dt>Theora video and Speex audio in Ogg container</dt>
<dd><pre>&lt;source src="video.ogv" type="video/ogg; codecs=&amp;quot;theora, speex&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.ogv' type='video/ogg; codecs="theora, speex"'&gt;</pre></dd>

<dt>Vorbis audio alone in Ogg container</dt>
<dd><pre>&lt;source src="audio.ogg" type="audio/ogg; codecs=vorbis"&gt;</pre></dd>
<dd><pre>&lt;source src='audio.ogg' type='audio/ogg; codecs=vorbis'&gt;</pre></dd>

<dt>Speex audio alone in Ogg container</dt>
<dd><pre>&lt;source src="audio.spx" type="audio/ogg; codecs=speex"&gt;</pre></dd>
<dd><pre>&lt;source src='audio.spx' type='audio/ogg; codecs=speex'&gt;</pre></dd>

<dt>FLAC audio alone in Ogg container</dt>
<dd><pre>&lt;source src="audio.oga" type="audio/ogg; codecs=flac"&gt;</pre></dd>
<dd><pre>&lt;source src='audio.oga' type='audio/ogg; codecs=flac'&gt;</pre></dd>

<dt>Dirac video and Vorbis audio in Ogg container</dt>
<dd><pre>&lt;source src="video.ogv" type="video/ogg; codecs=&amp;quot;dirac, vorbis&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.ogv' type='video/ogg; codecs="dirac, vorbis"'&gt;</pre></dd>

<dt>Theora video and Vorbis audio in Matroska container</dt>
<dd><pre>&lt;source src="video.mkv" type="video/x-matroska; codecs=&amp;quot;theora, vorbis&amp;quot;"&gt;</pre></dd>
<dd><pre>&lt;source src='video.mkv' type='video/x-matroska; codecs="theora, vorbis"'&gt;</pre></dd>

<!-- awaiting definition by the Ogg or BBC guys:
<dt>Dirac video and Vorbis audio in Matroska container</dt>
<dd><pre>&lt;source src="video.mkv" type="video/x-matroska; codecs="></pre></dd>
<dd><pre>&lt;source src='video.mkv' type='video/x-matroska; codecs='></pre></dd>
-->


<!-- awaiting definition by the Microsoft guys:

<dt>WMV9 video and WMA 2 audio in ASF container</dt>
<dd><pre>&lt;source src="video.wmv" type="video/x-ms-wmv; codecs="></pre></dd>
<dd><pre>&lt;source src='video.wmv' type='video/x-ms-wmv; codecs='></pre></dd>

<dt>WMV8 video and WMA 2 audio in ASF container</dt>
<dd><pre>&lt;source src="video.wmv" type="video/x-ms-wmv; codecs="></pre></dd>
<dd><pre>&lt;source src='video.wmv' type='video/x-ms-wmv; codecs='></pre></dd>

<dt>VC-1 video and WMA 10 Pro audio in ASF container</dt>
<dd><pre>&lt;source src="video.wmv" type="video/x-ms-wmv; codecs="></pre></dd>
<dd><pre>&lt;source src='video.wmv' type='video/x-ms-wmv; codecs='></pre></dd>

<dt>XviD video and MP3 audio in AVI container</dt>
<dd><pre>&lt;source src="video.avi" type="video/x-msvideo; codecs="></pre></dd>
<dd><pre>&lt;source src='video.avi' type='video/x-msvideo; codecs='></pre></dd>

<dt>Motion-JPEG video and uncompressed PCM audio in AVI container</dt>
<dd><pre>&lt;source src="video.avi" type="video/x-msvideo; codecs="></pre></dd>
<dd><pre>&lt;source src='video.avi' type='video/x-msvideo; codecs='></pre></dd>

-->


<!-- awaiting definition by Real:
<dt>Real Video 10 video and High-Efficiency AAC audio in Real Media container</dt>
<dd><pre>&lt;source src="video.rm" type="application/vnd.rn-realmedia; codecs="></pre></dd>
<dd><pre>&lt;source src='video.rm' type='application/vnd.rn-realmedia; codecs='></pre></dd>
-->


<!-- undefined:
<dt>MPEG-1 video and MPEG-1 Audio Layer II audio in MPEG-1 program stream</dt>
<dd><pre>&lt;source src="video.mpg" type="video/mpeg; codecs="></pre></dd>
<dd><pre>&lt;source src='video.mpg' type='video/mpeg; codecs='></pre></dd>
-->

</dl></div>
Expand Down Expand Up @@ -72068,6 +72068,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
Silvia Pfeiffer,
Simon Montagu,
Simon Pieters,
skeww, <!-- on reddit -->
Stefan Haustein,
Steffen Meschkat,
Stephen Ma,
Expand Down
47 changes: 24 additions & 23 deletions source
Expand Up @@ -21193,84 +21193,84 @@ interface <dfn>HTMLAudioElement</dfn> : <span>HTMLMediaElement</span> {
<dl>

<dt>H.264 Simple baseline profile video (main and extended video compatible) level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;avc1.42E01E, mp4a.40.2&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'></pre></dd>

<dt>H.264 Extended profile video (baseline-compatible) level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;avc1.58A01E, mp4a.40.2&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="avc1.58A01E, mp4a.40.2"'></pre></dd>

<dt>H.264 Main profile video level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;avc1.4D401E, mp4a.40.2&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="avc1.4D401E, mp4a.40.2"'></pre></dd>

<dt>H.264 "High" profile video (incompatible with main, baseline, or extended profiles) level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;avc1.64001E, mp4a.40.2&amp;quot;"></pre></dd>
<dt>H.264 'High' profile video (incompatible with main, baseline, or extended profiles) level 3 and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="avc1.64001E, mp4a.40.2"'></pre></dd>


<dt>MPEG-4 Visual Simple Profile Level 0 video and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;mp4v.20.8, mp4a.40.2&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="mp4v.20.8, mp4a.40.2"'></pre></dd>

<dt>MPEG-4 Advanced Simple Profile Level 0 video and Low-Complexity AAC audio in MP4 container</dt>
<dd><pre>&lt;source src="video.mp4" type="video/mp4; codecs=&amp;quot;mp4v.20.240, mp4a.40.2&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.mp4' type='video/mp4; codecs="mp4v.20.240, mp4a.40.2"'></pre></dd>

<dt>MPEG-4 Visual Simple Profile Level 0 video and AMR audio in 3GPP container</dt>
<dd><pre>&lt;source src="video.3gp" type="video/3gpp; codecs=&amp;quot;mp4v.20.8, samr&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.3gp' type='video/3gpp; codecs="mp4v.20.8, samr"'></pre></dd>


<dt>Theora video and Vorbis audio in Ogg container</dt>
<dd><pre>&lt;source src="video.ogv" type="video/ogg; codecs=&amp;quot;theora, vorbis&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.ogv' type='video/ogg; codecs="theora, vorbis"'></pre></dd>

<dt>Theora video and Speex audio in Ogg container</dt>
<dd><pre>&lt;source src="video.ogv" type="video/ogg; codecs=&amp;quot;theora, speex&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.ogv' type='video/ogg; codecs="theora, speex"'></pre></dd>

<dt>Vorbis audio alone in Ogg container</dt>
<dd><pre>&lt;source src="audio.ogg" type="audio/ogg; codecs=vorbis"></pre></dd>
<dd><pre>&lt;source src='audio.ogg' type='audio/ogg; codecs=vorbis'></pre></dd>

<dt>Speex audio alone in Ogg container</dt>
<dd><pre>&lt;source src="audio.spx" type="audio/ogg; codecs=speex"></pre></dd>
<dd><pre>&lt;source src='audio.spx' type='audio/ogg; codecs=speex'></pre></dd>

<dt>FLAC audio alone in Ogg container</dt>
<dd><pre>&lt;source src="audio.oga" type="audio/ogg; codecs=flac"></pre></dd>
<dd><pre>&lt;source src='audio.oga' type='audio/ogg; codecs=flac'></pre></dd>

<dt>Dirac video and Vorbis audio in Ogg container</dt>
<dd><pre>&lt;source src="video.ogv" type="video/ogg; codecs=&amp;quot;dirac, vorbis&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.ogv' type='video/ogg; codecs="dirac, vorbis"'></pre></dd>

<dt>Theora video and Vorbis audio in Matroska container</dt>
<dd><pre>&lt;source src="video.mkv" type="video/x-matroska; codecs=&amp;quot;theora, vorbis&amp;quot;"></pre></dd>
<dd><pre>&lt;source src='video.mkv' type='video/x-matroska; codecs="theora, vorbis"'></pre></dd>

<!-- awaiting definition by the Ogg or BBC guys:
<dt>Dirac video and Vorbis audio in Matroska container</dt>
<dd><pre>&lt;source src="video.mkv" type="video/x-matroska; codecs="></pre></dd>
<dd><pre>&lt;source src='video.mkv' type='video/x-matroska; codecs='></pre></dd>
-->


<!-- awaiting definition by the Microsoft guys:

<dt>WMV9 video and WMA 2 audio in ASF container</dt>
<dd><pre>&lt;source src="video.wmv" type="video/x-ms-wmv; codecs="></pre></dd>
<dd><pre>&lt;source src='video.wmv' type='video/x-ms-wmv; codecs='></pre></dd>

<dt>WMV8 video and WMA 2 audio in ASF container</dt>
<dd><pre>&lt;source src="video.wmv" type="video/x-ms-wmv; codecs="></pre></dd>
<dd><pre>&lt;source src='video.wmv' type='video/x-ms-wmv; codecs='></pre></dd>

<dt>VC-1 video and WMA 10 Pro audio in ASF container</dt>
<dd><pre>&lt;source src="video.wmv" type="video/x-ms-wmv; codecs="></pre></dd>
<dd><pre>&lt;source src='video.wmv' type='video/x-ms-wmv; codecs='></pre></dd>

<dt>XviD video and MP3 audio in AVI container</dt>
<dd><pre>&lt;source src="video.avi" type="video/x-msvideo; codecs="></pre></dd>
<dd><pre>&lt;source src='video.avi' type='video/x-msvideo; codecs='></pre></dd>

<dt>Motion-JPEG video and uncompressed PCM audio in AVI container</dt>
<dd><pre>&lt;source src="video.avi" type="video/x-msvideo; codecs="></pre></dd>
<dd><pre>&lt;source src='video.avi' type='video/x-msvideo; codecs='></pre></dd>

-->


<!-- awaiting definition by Real:
<dt>Real Video 10 video and High-Efficiency AAC audio in Real Media container</dt>
<dd><pre>&lt;source src="video.rm" type="application/vnd.rn-realmedia; codecs="></pre></dd>
<dd><pre>&lt;source src='video.rm' type='application/vnd.rn-realmedia; codecs='></pre></dd>
-->


<!-- undefined:
<dt>MPEG-1 video and MPEG-1 Audio Layer II audio in MPEG-1 program stream</dt>
<dd><pre>&lt;source src="video.mpg" type="video/mpeg; codecs="></pre></dd>
<dd><pre>&lt;source src='video.mpg' type='video/mpeg; codecs='></pre></dd>
-->

</dl>
Expand Down Expand Up @@ -84973,6 +84973,7 @@ time:empty { binding: <i title="">time</i>; }</pre>
Silvia Pfeiffer,
Simon Montagu,
Simon Pieters,
skeww, <!-- on reddit -->
Stefan Haustein,
Steffen Meschkat,
Stephen Ma,
Expand Down

0 comments on commit 004ac5a

Please sign in to comment.