Reputation: 794
I want to develop an Android application (using some library) which displays and reads text in Indian languages. Mainly in Devanagari (Sanskrit/Hindi/Marathi etc.) what would be the best way to go about it? Should i specify Phonetics for each word and feed it to Pico? Or can anyone please suggest a better and a simpler library. (Which even sounds natural).
Thanks in advance. :)
Upvotes: 0
Views: 1411
Reputation: 463
This may work.... Try to customize your TTS Locale as
Locale loc=new Locale("en","IN");
tts.setLanguage(loc);
Upvotes: 2