我从W3.org处接过这支SSML。 AVSpeechUtterance(ssmlRepresentation:)没有遵守轮船。 它没有变化。 它总是在同一个层次上发挥作用。 使用Im:Xcode 15.3,B.8装置与SOS 16.7.5,Sex。
这里的表述价值为 s。 SSML with contour tag
<?xml version="1.0"?>
<speak version="1.1" xmlns="http://www.w3.org/2001/10/synthesis"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/10/synthesis
http://www.w3.org/TR/speech-synthesis11/synthesis.xsd"
xml:lang="en-US">
<prosody contour="(0%,90Hz) (40%,90Hz) (0%,90Hz)">
good morning
</prosody>
</speak>
我的法典:
override func viewDidLoad() {
super.viewDidLoad()
guard let localUtterance = AVSpeechUtterance(ssmlRepresentation: self.speechSML) else {
print("SML did not work.")
return
}
self.utterance = localUtterance
self.utterance.voice = self.voiceNoelle
}
self.synthesizer.speak(self.utterance)