我正在使用AVSpeechSynthesizer
设置一个tts应用程序。我必须进行实时音高和速率调整。我正在使用UISLider
来调整音高和速率。
这是我的代码:-
@IBAction func sl(_ sender: UISlider) {
if synthesizer.isSpeaking {
synthesizer.stopSpeaking(at: .immediate)
self.rate = sender.value
if currentRange.length > 0 {
let valuee = currentRange.length + currentRange.location
let neww = self.tvEditor.text.dropFirst(valuee)
self.tvEditor.text = String(neww)
synthesizer.speak(buildUtterance(for: rate, pitch: pitch, with: String(neww), language: self.preferredVoiceLanguageCode2 ?? "en"))
}
} else {
}
}
答案 0 :(得分:1)
即使没有提供详细信息,我也可能已经理解您的问题:您无法考虑rate
和pitchMultiplier
的新值语音正在运行。
为解释以下详细信息,我阅读了this example,其中包含代码片段(ObjC,Swift)和插图。
AVSpeechUtterance
和rate
属性创建pitchMultiplier
实例。现在,如果要实时更改属性值,请在其中一个滑块移动后查看以下步骤:
AVSpeechSynthesizerDelegate
协议,获取当前的语音。stopSpeaking
合成器方法,该方法将从队列中删除尚未讲出的讲话。 在您要求不影响所存储话语的新值之前,合成器会将所有要说的信息放入队列中。您必须删除并重新创建具有新属性值的话语。
如果上面链接提供的代码示例还不够,我建议看一下this WWDC video detailed summary与AVSpeechSynthesizer
的处理。