[android-developers] Text to Speech Supported Languages

2016-07-31 Thread mob . cr4ft
Hi all,
Is there any tts library supporting English, Turkish and Arabic?

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/6e6baf7d-edc8-413d-9b82-84b08d61914f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Text-to-speech with language set to Cantonese ("yue") reads percentage incorrectly?

2016-07-26 Thread alanlo . hkej
I have been trying to implement text-to-speech into my app to support 
Cantonese. In some cases the engine seems to read sentences with percentage 
incorrectly, which below is a case I encountered:

Input:
有10.6% (In English it means, there is 10.6%)

What the engine outputs:
有一百分之零點六 (In English it is something like, there is 0.6 over 100, i.e. 0.6%)

Here is how I initiated my text-to-speech object:
TextToSpeech tts = new TextToSpeech(getApplicationContext(), new 
TextToSpeech.OnInitListener() {
 @Override
 public void onInit(int status) {
 if (status == TextToSpeech.SUCCESS) {


 }
 }
 });
Locale loc = new Locale("yue");
tts.setLanguage(loc);
tts.speak(speech, TextToSpeech.QUEUE_FLUSH, null); //speech in this case is"
有10.6%"

I tested with other language and it seems that there is no such problem, so 
I suspect that this might be a bug specifically for Cantonese? Or did I do 
something wrong?

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/732aa740-127d-498b-aa53-824c95465c8f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Text to speech

2016-02-17 Thread Rakesh Jha
What exactly you are looking, if example gives you about "Hello World" then
rest you can design and developed.

On Thu, Feb 18, 2016 at 8:18 AM, 0101001001100110 
wrote:

> Im looking for a tutorial on using text to speech. I have found many
> tutorials on building a text box and a button that speaks, but nothing that
> does a basic "hello world".
> Thank you on advance.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Android Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to android-developers+unsubscr...@googlegroups.com.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/5165bea7-26c1-4ec2-814b-c3eb7c246ad1%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Thanks & Regards

Rakesh Kumar Jha
Android Developer, Trainer and Mentor
Bangalore
Skype - rkjhaw
(O) +918050753516
(R) +919886336619

Rakesh Jha
9886336619

https://www.facebook.com/rakeshjhadhamdaha
https://twitter.com/rkjhaw
https://plus.google.com/u/0/b/114183395110899096234/114183395110899096234/

http://dhamdaha.blogspot.in/

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABL056Jvv%2B0m4Kxw3%3D1c8cFzMjTyx98RBcP2P8-e3L1KE1L4Yg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Text to speech

2016-02-17 Thread 01010010011011110110
Im looking for a tutorial on using text to speech. I have found many tutorials 
on building a text box and a button that speaks, but nothing that does a basic 
"hello world".
Thank you on advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/5165bea7-26c1-4ec2-814b-c3eb7c246ad1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Text to speech

2013-08-10 Thread shiva pendem
HI every one,

i would like to start a text to speech on a incoming call and i have tried 
the following method,
private class CallStateListener extends PhoneStateListener implements 
TextToSpeech.OnInitListener{
 public TextToSpeech tts;
 @Override
public void onCallStateChanged(int state, String incomingNumber) {
boolean entered=false;
tts = new TextToSpeech(ctx, new 
TextToSpeech.OnInitListener() {
public void onInit(int status) {
// TODO Auto-generated method stub
if (status == TextToSpeech.SUCCESS) {
int result = tts.setLanguage(Locale.US);
if (result == TextToSpeech.LANG_MISSING_DATA|| result == 
TextToSpeech.LANG_NOT_SUPPORTED) {
Log.e(TTS, Language is not supported);
} else {
speakOut(Test);
}
} else {
Log.e(TTS, Initilization Failed);
}
}
});
switch (state) {
case TelephonyManager.CALL_STATE_RINGING:
// called when someone is ringing to this phone
String text=;
if(!entered)
{
Log.v(Test,incomingNumber is +incomingNumber);
 tts.speak(Hello +getUserName()+ you have a call , 
TextToSpeech.QUEUE_FLUSH, null);
entered=!entered;
}
Toast.makeText(ctx,Incoming: +incomingNumber+ 
 +text,Toast.LENGTH_LONG).show();
break;
case TelephonyManager.CALL_STATE_OFFHOOK:
if(entered)
{
entered=!entered;
}
break;
}
}
public void onInit(int status) {
// TODO Auto-generated method stub
if (status == TextToSpeech.SUCCESS) {

int result = tts.setLanguage(Locale.US);

if (result == TextToSpeech.LANG_MISSING_DATA
|| result == TextToSpeech.LANG_NOT_SUPPORTED) {
Log.e(TTS, Language is not supported);
} else {
speakOut(Test);
}

} else {
Log.e(TTS, Initilization Failed);
}
}
private void speakOut(String text) {
tts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
}
}

I have initialized and used all the methods but unable to get the required 
output,

Can any one tell me how can i overcome this issue and make the speech on a 
call with user defined message,

If possible please advice me the jar that are used to convert text into 
speech with a simple method,while the phone was ringing,

Thanks in advance,
Shiva Shankar

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Text to speech

2013-08-10 Thread Fred Niggle
You would help yourself by adding debugging so you can double check things.

What permissions do you have set?
What device are you testing on?
When a call comes in what happens?


On 10 August 2013 21:28, shiva pendem pendem.shiv...@gmail.com wrote:

 HI every one,

 i would like to start a text to speech on a incoming call and i have tried
 the following method,
 private class CallStateListener extends PhoneStateListener implements
 TextToSpeech.OnInitListener{
  public TextToSpeech tts;
  @Override
 public void onCallStateChanged(int state, String incomingNumber) {
 boolean entered=false;
 tts = new TextToSpeech(ctx, new
 TextToSpeech.OnInitListener() {
 public void onInit(int status) {
 // TODO Auto-generated method stub
 if (status == TextToSpeech.SUCCESS) {
 int result = tts.setLanguage(Locale.US);
 if (result == TextToSpeech.LANG_MISSING_DATA|| result ==
 TextToSpeech.LANG_NOT_SUPPORTED) {
 Log.e(TTS, Language is not supported);
 } else {
 speakOut(Test);
 }
 } else {
 Log.e(TTS, Initilization Failed);
 }
 }
 });
 switch (state) {
 case TelephonyManager.CALL_STATE_RINGING:
 // called when someone is ringing to this phone
 String text=;
 if(!entered)
 {
 Log.v(Test,incomingNumber is +incomingNumber);
  tts.speak(Hello +getUserName()+ you have a call ,
 TextToSpeech.QUEUE_FLUSH, null);
 entered=!entered;
 }
 Toast.makeText(ctx,Incoming: +incomingNumber+
  +text,Toast.LENGTH_LONG).show();
 break;
 case TelephonyManager.CALL_STATE_OFFHOOK:
 if(entered)
 {
 entered=!entered;
 }
 break;
 }
 }
 public void onInit(int status) {
 // TODO Auto-generated method stub
 if (status == TextToSpeech.SUCCESS) {

 int result = tts.setLanguage(Locale.US);

 if (result == TextToSpeech.LANG_MISSING_DATA
 || result == TextToSpeech.LANG_NOT_SUPPORTED) {
 Log.e(TTS, Language is not supported);
 } else {
 speakOut(Test);
 }

 } else {
 Log.e(TTS, Initilization Failed);
 }
 }
 private void speakOut(String text) {
 tts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
 }
 }

 I have initialized and used all the methods but unable to get the required
 output,

 Can any one tell me how can i overcome this issue and make the speech on a
 call with user defined message,

 If possible please advice me the jar that are used to convert text into
 speech with a simple method,while the phone was ringing,

 Thanks in advance,
 Shiva Shankar

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] text to speech in broadcast receiver

2013-08-02 Thread shiva pendem
Hi,
i have written code to start services on receiving calls,

here is my code,

 */
public class CallHelper {
/**
 * Listener to detect incoming calls. 
 */
private class CallStateListener extends PhoneStateListener implements 
OnInitListener{
 @Override
public void onCallStateChanged(int state, String incomingNumber) {
boolean entered=false;
 switch (state) {
case TelephonyManager.CALL_STATE_RINGING:
// called when someone is ringing to this phone
String text=;
Log.v(Test,entered+incomingNumber);
 Toast.makeText(ctx, 
Incoming: +incomingNumber, 
Toast.LENGTH_LONG).show();
// tts.setLanguage(Locale.US);
break;
case TelephonyManager.CALL_STATE_OFFHOOK:
 break;
}
}
public void onInit(int status) {
// TODO Auto-generated method stub
 }
 }
 /**
 * Broadcast receiver to detect the outgoing calls.
 */
public class OutgoingReceiver extends BroadcastReceiver implements
TextToSpeech.OnInitListener {
public TextToSpeech mTts;
public OutgoingReceiver() {
}

@Override
public void onReceive(Context context, Intent intent) {
   
}

public void onInit(int status) {
// TODO Auto-generated method stub
if (status == TextToSpeech.SUCCESS) {
if (mTts.isLanguageAvailable(Locale.UK) = 0)

Toast.makeText( ctx,
Sucessfull intialization of Text-To-Speech engine Mytell ,
Toast.LENGTH_LONG).show();
mTts.setLanguage(Locale.UK);

   

} else if (status == TextToSpeech.ERROR) {
Toast.makeText(ctx,
Unable to initialize Text-To-Speech engine,
Toast.LENGTH_LONG).show();
}
}
}

  

private Context ctx;
private TelephonyManager tm;
private CallStateListener callStateListener;
 private OutgoingReceiver outgoingReceiver;

public CallHelper(Context ctx) {
this.ctx = ctx;
 callStateListener = new CallStateListener();
outgoingReceiver = new OutgoingReceiver();
}
 /**
 * Start calls detection.
 */
public void start() {
tm = (TelephonyManager) ctx.getSystemService(Context.TELEPHONY_SERVICE);
tm.listen(callStateListener, PhoneStateListener.LISTEN_CALL_STATE);
 IntentFilter intentFilter = new 
IntentFilter(Intent.ACTION_NEW_OUTGOING_CALL);
ctx.registerReceiver(outgoingReceiver, intentFilter);
 }
 /**
 * Stop calls detection.
 */
public void stop() {
tm.listen(callStateListener, PhoneStateListener.LISTEN_NONE);
ctx.unregisterReceiver(outgoingReceiver);
}

}


this code is showing the incoming no.
i want to stop the ringtone and start text to speech and say hey boss u 
have a call, or other text,

i have tried a lot but failed, even i faced the issue of bound error for 
text to speech,

can any one make this and reply me the sample code please,

Thanks,
Shiva shankar,

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Text to Speech sent through bluetooth

2012-01-02 Thread J Dorn
I had a Windows CE phone (T-Mobile Shadow).  If the bluetooth was on,
it would read various things to me over the bluetooth, such as
- text messages
- who was calling
- email message subject

I now have a MyTouch 4G Android phone, and all I can find are apps
that will read similar information, but only over the phones speaker,
not to the bluetooth/  I've tried 4 different apps that sounded
promising, but none would send sound to the bluetooth!

If MS could do this over a normal bluetooth headset 3 yrs ago, then
Android should be capable of the same.  Anyone know of an app that
does this, or one that is in development?

Thanks!
Jon

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Text To Speech from a service

2011-08-01 Thread byron
Hello im devoliping this app where I initialize the TextToSpeech tool
from a service after Boot Completed, and I keep it running, but when i
try to use it from one of my activities by instatiating it comes the
error. Does anybody have any suggestion?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Text To Speech from a service

2011-08-01 Thread TreKing
On Fri, Jul 29, 2011 at 5:50 PM, byron b.ller...@hotmail.com wrote:

 when i try to use it from one of my activities by instatiating it comes
 the error. Does anybody have any suggestion?


Explain what the error that comes is.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Text To Speech from a service

2011-08-01 Thread Nikolay Elenkov
On Sat, Jul 30, 2011 at 7:50 AM, byron b.ller...@hotmail.com wrote:
 Hello im devoliping this app where I initialize the TextToSpeech tool
 from a service after Boot Completed, and I keep it running, but when i
 try to use it from one of my activities by instatiating it comes the
 error. Does anybody have any suggestion?

Don't do this. Text to speech is already a service, just initialize the
TextToSpeech object in your activity and shutdown() when finished.
It will connect/disconnect to the service as needed.

And yes, without at least a stack trace nobody can really help you.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Text to speech on Tablet

2011-01-13 Thread dsurround
Are there any known problems for text to speech on a tab (galaxy tab)
versus a phone?  I have a customer that is using the newest samsung
tab 2.3 OS release and reported a problem where the text to speech
engine keeps repeating something over and over that should only be
spoken once.  The application (TUNGS) is working perfectly on a droid
phone 2.3 OS release.   Since I do not have a Samsung tab, I cannot
research the problem on the hardware.  No other reports of this
problem (500 downloads).

Any insight would be appreciated.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Text To Speech API question

2010-10-04 Thread JimmyHoffa
Hi all,

Just a passing thought I wanted to check out whether it's possible
using the TTS engine to apply effects to voices.

Without beating around the bush my 'requirement' if you can call it
that is to playback a robot sounding version of whatever sentence the
user has recorded using a mix of voice recognition and then effects
processing and playback

From what I saw though with TTS you can only use playback text using
whatever language/voice you have in your settings.. there's no room to
tweak the voice..

So looking for any corrections if I'm wrong and it is possible or
advice on how to accomplish what I mentioned..

Thanks.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Text To Speech API question

2010-10-04 Thread berliner
Hi,

what you can do is use the synthesizeToFile method of the TextToSpeech
Class. That will write the result of the speech synthesis into a wav file. You
can than do any processing you like on the generated file and play it back
later.

regards,
berliner

Am 04.10.2010 um 22:02 schrieb JimmyHoffa:

 Hi all,
 
 Just a passing thought I wanted to check out whether it's possible
 using the TTS engine to apply effects to voices.
 
 Without beating around the bush my 'requirement' if you can call it
 that is to playback a robot sounding version of whatever sentence the
 user has recorded using a mix of voice recognition and then effects
 processing and playback
 
 From what I saw though with TTS you can only use playback text using
 whatever language/voice you have in your settings.. there's no room to
 tweak the voice..
 
 So looking for any corrections if I'm wrong and it is possible or
 advice on how to accomplish what I mentioned..
 
 Thanks.
 
 -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Text to speech unfunctional

2010-06-07 Thread Uander
Hi All ,

we have ported android 2.1 on one of our custom board .
I was checking Text to speech functionality on it .

I click Settings-Text to Speech . ..it gives n new screen All options other
than
Install voice data is greyed out .
When I click on install voice data .
it says The application Pico TTS has stoppped unexpectedly. PLease try
again 

Can anyone point me what is the issue or how to install voice data on my
board having eclair 2.1 .


Thanks :
Uander

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Text To Speech Android 1.6 with minsdk 3

2009-11-18 Thread Eric Carman
Hello,

I was playing with adding Text to Speech to one of my applications and
have been working with it using the Android 1.6 SDK. I was hoping to
release the code such that it could be used on the earlier 1.5 OS
since there are still quite a few of these around - and this is an
upgrade. I realize that the TTS won't work on the 1.5 (at least not as
I have it here), but I didn't want the app disappearing from the
market for those devices.

At any rate, after struggling for a while with this - a lot of trial
and error - I came up with what now seems like a simple wrapper to
allow for the backward compatibility. This was mostly taken from the
Android blog entry

http://android-developers.blogspot.com/2009/04/backward-compatibility-for-android.html

so I'm not exactly breaking new ground. Also, I'm not using all of the
TTS features, hence the short list of wrapped methods, expand at
your leisure. I'm attaching it here for anyone to use and anyone to
comment on if I have done something really stupid. I'll comment back
if my testing uncovers anything untoward.

Wrapper Class:

package com.mydomain.myapp;

import java.util.HashMap;
import java.util.Locale;

import android.content.Context;
import android.speech.tts.TextToSpeech;

public class WrapTTS {

private TextToSpeech mTTS;

/* class initialization fails when this throws an exception */
static {
try {
Class.forName(android.speech.tts.TextToSpeech);
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}

/* calling here forces class initialization */
public static void checkAvailable() {}

private OnInitListener onInitListener = null;
public interface OnInitListener {
public abstract void onInit(int status);
}

public WrapTTS(Context context, WrapTTS.OnInitListener listener) {
onInitListener = listener;
mTTS = new TextToSpeech(context,
new TextToSpeech.OnInitListener() {

@Override
public void onInit(int status) {
onInitListener.onInit(status);
}

});

}

public int setSpeechRate(float speechRate) {
return mTTS.setSpeechRate(speechRate);
}

public void shutdown() {
mTTS.shutdown();
}

public int speak(String text, int queueMode, HashMapString, String
params) {
return mTTS.speak(text, queueMode, params);
}

public int setLanguage(Locale loc) {
return mTTS.setLanguage(loc);
}

public int isLanguageAvailable(Locale loc) {
return mTTS.isLanguageAvailable(loc);
}
}

The following is used at the top of my main application.

private WrapTTS mTts = null;
private static boolean mTTSClassAvailable = false;

/* establish whether the TextToSpeech class is available to us */

static {
try {
WrapTTS.checkAvailable();
mTTSClassAvailable = true;
} catch (Throwable t) {
mTTSClassAvailable = false;
}
}

Use the mTTSClassAvailable to know whether to bother to even try to
set up the engine.

Hopefully it helps someone.

Best Regards,
Eric

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Text-To-Speech library

2009-08-10 Thread Sujay Krishna Suresh
Hi all,
  is there any text to speech library in 1.5?? if so where is
it??? how can we use it??

-- 
Regards,
Sujay
Charles de 
Gaullehttp://www.brainyquote.com/quotes/authors/c/charles_de_gaulle.html
- The better I get to know men, the more I find myself loving dogs.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Text-to-Speech for Android: Eyes-Free

2008-12-16 Thread blindfold

For your information. I was tipped by a reliable source about the
availability of Eyes-Free, a new text-to-speech (TTS) library from
Google that currently uses an Android port of the eSpeak text-to-
speech engine:

http://eyes-free.googlecode.com/svn/trunk/documentation/tutorial/tutorial.html

Enjoy!


The vOICe for Android
http://www.seeingwithsound.com/android.htm

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Text-To-Speech

2008-11-20 Thread Peach

I am not able to even see this app on the Market. Can someone help me
find it or something plz. Oh and what's been up w/ Aim, am I the only
person still having issues w/ that as well? I mean I love this phone
but it has a lot of issues. Lol No Video camera, u can't add videos
other then ones recorede from a previous device, you can't save
pictures w/ out emailing them to your self 1st. I mean come on now.!.
This phone was the biggest thing and now nothing works really. Its
still kool though.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Text to Speech lib from Android Market

2008-10-29 Thread blues

There is a free lib can be downloaded from Android Market on the G1
phone. It's developed by a google developer.

Does anyone know how to use it? Any document about it?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Text to speech library on Android...

2008-06-16 Thread Wesley Sagittarius

hi,

any idea where can I get Text to speech library???

or how can I start on Text to speech library???


Wesley.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Text to speech

2008-05-18 Thread Ken Perry
I have looked through the archives and have seen that some people were
trying to get Free TTS to work with Android.  I personally don't like free
tts but with that said did anyone ever get it to work.  If not has there
been any more news  about TTS being added to the Android SDK?

I did search the group before posting this but I never saw a conclusion to
the discussion.

Ken  


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---