I have trying to convey my text to speech tamil language but it not support any other way is there?
Am using : flutter_tts package
my code:
speak() async {
final languages = await Tts.getAvailableLanguages();
var isGoodLanguage = await Tts.isLanguageAvailable("ta");
print(isGoodLanguage);
await Tts.setLanguage("tamil");
Tts.speak('வாழ்ந்த காலம்: 2 ஆம் நூறாண்டு முதல் 8 நூற்றாண்டு வரை'); }
But it's not working anyone tried with tamil text to voice please help me. Thanks.