菜鸟教程小白 发表于 2022-12-13 11:13:40

使用 AVSpeechSynthesizer 的 iOS 文本转语音


                                            <p><p>我在我的 iOS 应用中使用 <code>AVSpeechSynthesizer</code> 进行文字转语音。</p>

<p>语音合成器在除运行 iOS 9.0.2 的 iPad 2(型号 A1395)以外的所有设备上都能正常工作。我正在使用 Xcode 7.0.1。</p>

<p>问题是,在播放文本说“希望”时,字母“p”要么真的很安静,要么没有播放,用户只能听到“ho”。如果文本是“希望”,则播放正确。</p>

<p>你知道如何解决这个问题吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>需要设置一些参数(语音、速率...),并且我已经遇到了 iOS 9 的一些错误,其中一些代码直接与以前的 iOS 一起工作。这是我初始化 <code>AVSpeechSynthesizer</code> 的代码:</p>

<pre><code>NSString*str = @&#34;hope&#34;;
AVSpeechSynthesizer*    synth = [ init];
AVSpeechUtterance *utterance = [AVSpeechUtterance
                                        speechUtteranceWithString: str];
utterance.rate = AVSpeechUtteranceDefaultSpeechRate;
NSString*lang = @&#34;en-US&#34;
utterance.voice = ;
;
</code></pre>

<p>你能在你的 iPad 2 上试试这个代码吗?</p></p>
                                   
                                                <p style="font-size: 20px;">关于使用 AVSpeechSynthesizer 的 iOS 文本转语音,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33018217/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33018217/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: 使用 AVSpeechSynthesizer 的 iOS 文本转语音