AVSpeechSynthesizer stops at a hypen
Richard Bawden
1
Reputation point
The following code displays the behaviour on Xamarin.iOS 15.4 running on iOS 15.2. It only displays the behaviour on a device, not on a simulator.
What am I missing to make the speech continue?
AVSpeechSynthesizer speechSynthesizer = new AVSpeechSynthesizer();
speechSynthesizer.DidFinishSpeechUtterance += (s, e) => { };
var utterance = new AVSpeechUtterance("bonjour porte-helecoptere");
utterance.Voice = AVSpeechSynthesisVoice.FromIdentifier("com.apple.ttsbundle.siri_Daniel_fr-FR_compact");
speechSynthesizer.SpeakUtterance(utterance);
Developer technologies | .NET | Xamarin
5,381 questions
Sign in to answer