how can I set the assistant accent to native amharic speaker in flutter text-to-speech and speech to text?
Future _Speak() async {
await _flutterTts.setLanguage('en-US');
await _flutterTts.setVoice({"name": "Karen", "locale": "en-US"});
await _flutterTts.setPitch(1.0);
await _flutterTts.setVolume(1);
await _flutterTts.setSpeechRate(0.5);
// await _flutterTts.speak(_textController.text);
if (_tts != null) {
if (_tts!.isNotEmpty) {
await _flutterTts.speak(_tts!);
}
}
}
it really works with English accent (it can read Amharic alphabets but the accent is not good to listen for native Amharic speakers ), so what should I do?
I am trying to develop Amharic text to speech and speech to text converter