I need to convert the sentence to Bangla text for speaking.
Example:
How are you? -> হাউ আর ইউ?
If anyone can do this with any programing language Please share this code.
Advance Thanks.
i think u need to see this
(Text-To-Speech) Service
https://pub.dev/packages/text_to_speech
Seems like you need transliteration rather than translation. You can take a look at this package:
transliteration
They have support for several languages, including Bangla.
Related
How do I translate/convert Thanglish to tamil script on android?
I googled a lot but didn't find any hints, could someone please suggest a solution?
you have to use google translate API if you want to translate texts dynamically. Refer this link.
https://cloud.google.com/translate/docs?csw=1
There are online tools like quillpad and tamiltyping and apps in android like Tanglish to do that. If you want to develop one in android, you can translate as the vowels and consonants are typed in english, and add a tamil dictionary to make sure the spelling is right.
I am trying to make an application in which user can translate text one language to another and will be able to hear the translated text.
I Somehow Done Translating One Language to another using Microsoft Translate API.
But I am still unable to to speak out that translated text.
Please Guide me, How to achieve this functionality.
You can suggest me totally different API with translation and speech, I can convert my project to that.
Please Please any help.
Regards
You can you Google's text to speech. See this.
I m designing an android app that requires to store and display mathematical symbols, equation. Please help me ..
Thank you
I think yo need to use unicode entity codes.
Have a look at this.
https://en.wikipedia.org/wiki/Mathematical_operators_and_symbols_in_Unicode
http://symbolcodes.tlt.psu.edu/bylanguage/mathchart.html
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. :)
This may work.... Try to customize your TTS Locale as
Locale loc=new Locale("en","IN");
tts.setLanguage(loc);
I am looking a way to develop an app in Android which speaks Javanese Language from texts. As I know there is no such Javanese TTS installed by default. So is there any way to modify default TTS engine pronunciation?
For example, the my expected pronunciation of "PIYE" is pee-ye. Here is what the TTS engine produces:
mTts.speak("piye", TextToSpeech.QUEUE_ADD, null); // output: pie-ee
Can somebody help me? Thank you.
No, you cannot change the pronunciation. There is not API method to do so.
I am trying to do something similar - get an app to use standard US-EN pronunciation for scientific terms. My solution is to force the TTS engine to say certain words in a certain way by first replacing them with phonetically correct phrases. Here's an example:
myString = myString.replace(" cis "," sihs ");
This approach seems promising but not perfect.