AVSpeechSynthesizer seems to support english with multi delegates (britsh, us...)
Does it support other languages? french, Portuguese ... is there a list of these languages somewhere ?
AVSpeechSynthesizer seems to support english with multi delegates (britsh, us...)
Does it support other languages? french, Portuguese ... is there a list of these languages somewhere ?
these two little functions will help:
import AVFoundation
import Foundation
func getSpeechSupportedRegionalLanguages() -> [String] {
let voices = AVSpeechSynthesisVoice.speechVoices()
var languages: Set<String> = []
let english = Locale(identifier: "en")
voices.forEach{languages.insert(english.localizedString(forIdentifier: $0.language)!)}
return Array(languages).sorted()
}
func getSpeechSupportedLanguages() -> [String] {
let voices = AVSpeechSynthesisVoice.speechVoices()
var languages: Set<String> = []
let english = Locale(identifier: "en")
voices.forEach{languages.insert(english.localizedString(forLanguageCode: $0.language)!)}
return Array(languages).sorted()
}
Yes, it does. Use
speechVoices
of AVSpeechSynthesisVoice to get a list of available voices with supported languages.Currently (as of 10 September 2018, on iOS 10.3.1 and 11.4.1) you'll find these: