ios - 是否可以更改 AVSpeechSynthesizer 语音中的语音音高?
<p><p>我可以在 AVSpeechSynthesizer 中更改语音的音高,或者对它的输出语音添加任何效果,使其听起来不同吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>是的,您可以更改口语句子的<strong>音高</strong>和<strong>速率</strong>。</p>
<p><code>AVSpeechUtterance</code> 类有两个相关属性:</p>
<ul>
<li><code>pitchMultiplier: Float</code>(值在 <strong>0.5</strong>(最低音高)到 <strong>2.0</strong>(最高音高)之间)。默认音高为 <strong>1.0</strong>。</li>
<li><code>rate: Float</code>(两个常数之间的值:<code>AVSpeechUtteranceMinimumSpeechRate</code>(最慢的语速)和<code>AVSpeechUtteranceMaximumSpeechRate</code>(最高语速) .</li>
</ul>
<p>当您创建 <code>AVSpeechUtterance</code> 时,只需适本地设置这些属性,然后让您的 <code>AVSpeechSynthesizer</code> 说出话语。</p>
<p>注意:您还可以更改 <code>AVSpeechUtterance</code> 的<strong>语音</strong>(重音)。</p>
<p>我希望这会有所帮助。如果我说的有什么不清楚的地方,请告诉我。</p></p>
<p style="font-size: 20px;">关于ios - 是否可以更改 AVSpeechSynthesizer 语音中的语音音高?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/35102011/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/35102011/
</a>
</p>
页:
[1]