Skip to content

Commit c513500

Browse files
committed
fixed pitch and range syntax to allow combining keyword and relative change (consistent with voice-volume and voice-rate)
1 parent 665dfd6 commit c513500

2 files changed

Lines changed: 26 additions & 16 deletions

File tree

css3-speech/Overview.html

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@
9090

9191
<h1 id=top>CSS Speech Module</h1>
9292

93-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 13 July 2011</h2>
93+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 14 July 2011</h2>
9494

9595
<dl>
9696
<dt>This version:
9797

9898
<dd>
99-
<!--<a href="http://www.w3.org/TR/2011/WD-css3-speech-20110713">http://www.w3.org/TR/2011/ED-css3-speech-20110713/</a>-->
99+
<!--<a href="http://www.w3.org/TR/2011/WD-css3-speech-20110714">http://www.w3.org/TR/2011/ED-css3-speech-20110714/</a>-->
100100
<a
101101
href="http://dev.w3.org/csswg/css3-speech">http://dev.w3.org/csswg/css3-speech</a>
102102

@@ -2166,8 +2166,9 @@ <h3 id=voice-props-voice-pitch><span class=secno>10.3. </span>The &lsquo;<a
21662166
<tr>
21672167
<td> <em>Value:</em>
21682168

2169-
<td>&lt;frequency&gt; &amp;&amp; absolute? | &lt;semitones&gt; |
2170-
&lt;percentage&gt; | x-low | low | medium | high | x-high
2169+
<td>&lt;frequency&gt; &amp;&amp; absolute | [[x-low | low | medium |
2170+
high | x-high] || [&lt;frequency&gt; | &lt;semitones&gt; |
2171+
&lt;percentage&gt;]]
21712172

21722173
<tr>
21732174
<td> <em>Initial:</em>
@@ -2308,8 +2309,9 @@ <h3 id=voice-props-voice-range><span class=secno>10.4. </span>The &lsquo;<a
23082309
<tr>
23092310
<td> <em>Value:</em>
23102311

2311-
<td>&lt;frequency&gt; &amp;&amp; absolute? | &lt;semitones&gt; |
2312-
&lt;percentage&gt; | x-low | low | medium | high | x-high
2312+
<td>&lt;frequency&gt; &amp;&amp; absolute | [[x-low | low | medium |
2313+
high | x-high] || [&lt;frequency&gt; | &lt;semitones&gt; |
2314+
&lt;percentage&gt;]]
23132315

23142316
<tr>
23152317
<td> <em>Initial:</em>
@@ -3113,8 +3115,9 @@ <h2 class=no-num id=property-index>Appendix A &mdash; Property index</h2>
31133115
<tr>
31143116
<td><a class=property href="#voice-pitch">voice-pitch</a>
31153117

3116-
<td>&lt;frequency&gt; &amp;&amp; absolute? | &lt;semitones&gt; |
3117-
&lt;percentage&gt; | x-low | low | medium | high | x-high
3118+
<td>&lt;frequency&gt; &amp;&amp; absolute | [[x-low | low | medium |
3119+
high | x-high] || [&lt;frequency&gt; | &lt;semitones&gt; |
3120+
&lt;percentage&gt;]]
31183121

31193122
<td>medium
31203123

@@ -3129,8 +3132,9 @@ <h2 class=no-num id=property-index>Appendix A &mdash; Property index</h2>
31293132
<tr>
31303133
<td><a class=property href="#voice-range">voice-range</a>
31313134

3132-
<td>&lt;frequency&gt; &amp;&amp; absolute? | &lt;semitones&gt; |
3133-
&lt;percentage&gt; | x-low | low | medium | high | x-high
3135+
<td>&lt;frequency&gt; &amp;&amp; absolute | [[x-low | low | medium |
3136+
high | x-high] || [&lt;frequency&gt; | &lt;semitones&gt; |
3137+
&lt;percentage&gt;]]
31343138

31353139
<td>medium
31363140

@@ -3627,7 +3631,8 @@ <h2 class=no-num id=changes>Appendix D &mdash; Changes from previous draft</h2>
36273631
<li>Fixed "computed value" for &lsquo;<a href="#voice-pitch"><code
36283632
class=property>voice-pitch</code></a>&rsquo; and &lsquo;<a
36293633
href="#voice-range"><code class=property>voice-range</code></a>&rsquo;
3630-
properties.
3634+
properties, and added the possibility to combine a keyword with a
3635+
relative change.
36313636

36323637
<li>Removed the "phonemes" property (and its associated "@alphabet"
36333638
at-rule).
@@ -3679,6 +3684,9 @@ <h2 class=no-num id=changes>Appendix D &mdash; Changes from previous draft</h2>
36793684
between stereo left-right sound axis and three-dimensional sound stage
36803685
(azimuth support in future versions of CSS-Speech).
36813686

3687+
<li>Fixed the "computed value" for &lsquo;<a href="#voice-balance"><code
3688+
class=property>voice-balance</code></a>&rsquo;.
3689+
36823690
<li>Added the &lsquo;<code class=property>normal</code>&rsquo; value for
36833691
voice-rate ("default" in SSML 1.1).
36843692

css3-speech/Overview.src.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1712,8 +1712,8 @@ <h3 id="voice-props-voice-pitch">The 'voice-pitch' property</h3>
17121712
<td>
17131713
<em>Value:</em>
17141714
</td>
1715-
<td>&lt;frequency&gt; &amp;&amp; absolute? | &lt;semitones&gt; | &lt;percentage&gt; |
1716-
x-low | low | medium | high | x-high </td>
1715+
<td>&lt;frequency&gt; &amp;&amp; absolute | [[x-low | low | medium | high | x-high] ||
1716+
[&lt;frequency&gt; | &lt;semitones&gt; | &lt;percentage&gt;]] </td>
17171717
</tr>
17181718
<tr>
17191719
<td>
@@ -1847,8 +1847,8 @@ <h3 id="voice-props-voice-range">The 'voice-range' property</h3>
18471847
<td>
18481848
<em>Value:</em>
18491849
</td>
1850-
<td>&lt;frequency&gt; &amp;&amp; absolute? | &lt;semitones&gt; | &lt;percentage&gt; |
1851-
x-low | low | medium | high | x-high </td>
1850+
<td>&lt;frequency&gt; &amp;&amp; absolute | [[x-low | low | medium | high | x-high] ||
1851+
[&lt;frequency&gt; | &lt;semitones&gt; | &lt;percentage&gt;]] </td>
18521852
</tr>
18531853
<tr>
18541854
<td>
@@ -2592,7 +2592,8 @@ <h2 class="no-num" id="changes">Appendix D &mdash; Changes from previous draft</
25922592
<li>Renamed 'voice-pitch-range' to 'voice-range', which is compatible with SSML's notation,
25932593
and removes the possibility to interpret this property as being a subset of
25942594
'voice-pitch'.</li>
2595-
<li>Fixed "computed value" for 'voice-pitch' and 'voice-range' properties.</li>
2595+
<li>Fixed "computed value" for 'voice-pitch' and 'voice-range' properties, and added the
2596+
possibility to combine a keyword with a relative change.</li>
25962597
<li>Removed the "phonemes" property (and its associated "@alphabet" at-rule).</li>
25972598
<li>Renamed 'speakability' to 'speak', and 'speak' to 'speak-as'. Reorganized the 'speak-as'
25982599
values to allow mixing different types.</li>
@@ -2613,6 +2614,7 @@ <h2 class="no-num" id="changes">Appendix D &mdash; Changes from previous draft</
26132614
<li>Added prose for 'voice-balance' to describe the mapping between stereo left-right sound
26142615
axis and three-dimensional sound stage (azimuth support in future versions of
26152616
CSS-Speech).</li>
2617+
<li>Fixed the "computed value" for 'voice-balance'.</li>
26162618
<li>Added the 'normal' value for voice-rate ("default" in SSML 1.1).</li>
26172619
<li>Fixed the "computed value" for voice-rate, and added the possibility to combine keywords
26182620
and percentages (to be consistent with 'voice-volume'). Added an example to illustrate

0 commit comments

Comments
 (0)