I'm using AVSpeechSynthesizer for voice out some text data, it'll work for first time but it didn't work after that.
I'm getting below messages.
Error:-
AppName[859:101035] [AXTTSCommon] Failure starting audio queue alp!
2018-10-26 18:06:53.253536+0530 AppName[859:101035] [AXTTSCommon]
_BeginSpeaking: couldn't begin playback
Below i share my code.
let synth = AVSpeechSynthesizer()
fileprivate func speakText(voiceOutdata: String )
{
let utterance = AVSpeechUtterance(string: voiceOutdata)
utterance.voice = AVSpeechSynthesisVoice(language: "en-US")
synth.speak(utterance)
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…