How to use Hindi(Indian Mother Tongue) language in Text-To-Speech?

Go To StackoverFlow.com

3

I am creating an application for student. I need to enter data in Hindi or Marathi.
When user clicks on specific topic then user should be able to listen this topic in Hindi Or Marathi.
I know How to set Language in TextToSpeech like

Tts.setLanguage(Locale.US);  

I need to set Hindi or Marathi Language. My question is that how to use Marathi or Hindi
Language in TextToSpeech. Please give me any reference or hint.

2012-04-04 06:19
by NoName
You are working what I am searching since ago, I am not a programmer so I can't made it but someone interested in it sounds good. So here is an android application which can do what we are discussing but with an online voice synthesizer. "https://play.google.com/store/apps/details?id=com.proxy.translator&referrer=utmsource%3Dgoogle%26utmmedium%3Dorganic%26utm_term%3Dtranslator+with+speech+google+play" I hope it helps you and may you make an offline hindi tts service - Aashish 2013-06-30 05:03


4

You need a text-to-speech (TTS) engine that supports Hindi. Each TTS engine has specific languages that it supports. Here is a TTS engine that supports Hindi, but this runs on Windows. I see from the tags that you want to support this on Android. Here is a post about supporting Hindi TTS on an Android. The native TTS on Android does not support Hindi. What you may have to do is create a service that uses the Hindi text and translates it to an audio file. You would then stream the audio file to your Android application.

In my opinion though you will not want to use TTS for an educational application. I think you will find the output from the TTS very robotic and hard to understand by the students. I would record the lessons/information and just stream it in your application. Before you purchase any TTS engine I would try it out first to make sure that the generated voice is acceptable. Most of the top educational application today (ex: Khan Academy) use pre-recorded audio and/or video.

2012-04-04 12:15
by Kevin Junghans
Flite TTS Engine for AndroidGuruM 2014-07-09 13:41


0

you should use msg.lang = 'hi-IN';

2017-12-08 11:36
by Akash Chatterjee


0

you should have to use :-

tts.setLanguage(Locale.forLanguageTag("hin-IND"));

or

tts.setLanguage(new Locale("hin","IND",null));
2018-02-22 11:26
by Geet Thakur
Ads