iOS
AVSpeechSynthesizer
Recherche…
Syntaxe
- AVSpeechSynthesizer () // Crée un synthétiseur vocal
- speaker.speakUtterance (speech) // Convertit le texte en discours
Paramètres
Paramètre | Détails |
---|---|
orateur | Objet AVSpeechSynthesizer |
discours | Objet AVSpeechUtterance |
Créer un texte de base à la parole
Utilisez la méthode speakUtterance:
de AVSpeechSynthesizer
pour convertir du texte en parole. Vous devez passer un objet AVSpeechUtterance
à cette méthode, qui contient le texte que vous souhaitez AVSpeechUtterance
.
Objectif c
AVSpeechSynthesizer *speaker = [[AVSpeechSynthesizer alloc] init];
AVSpeechUtterance *speech = [AVSpeechUtterance speechUtteranceWithString:@"Hello World"];
[speaker speakUtterance:speech];
Rapide
let speaker = AVSpeechSynthesizer()
let speech = AVSpeechUtterance(string: "Hello World")
speaker.speakUtterance(speech)
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow