[android-developers] Re: Text2Speech now hosted at google code

2008-10-04 Thread Wesley

This project is not working???
Seem a lot bug not yet solve...
Any others suggestions... So I can have tts features in my app

wesley.

On 9/10/08, kelseywright <[EMAIL PROTECTED]> wrote:
>
> This also uses javax.sound to write the sound file in the first place,
> which will need taken care of.
>
> On Sep 9, 4:41 pm, kelseywright <[EMAIL PROTECTED]> wrote:
>> My concern would be dealing with javax.sound.sampled.AudioFormat
>> though, which is sprinkled throughout the code, and not just in the
>> players section.
>>
>> On Sep 9, 4:28 pm, blindfold <[EMAIL PROTECTED]> wrote:
>>
>> > The javax.sound stuff should be replaced by equivalent functionality
>> > from android.media.MediaPlayer which hopefully it not hard using a low-
>> > level wrapper around the audio function calls. However, Android (SDK
>> > 0.9 beta) lacks support for in-memory sound synthesis and playback, so
>> > one is forced to each time write synthesized speech (e.g., with
>> > interpolated phonemes) first to file and then play that file. Might
>> > suffice for a first port though.
>>
>> > Regards
>>
>> > On Sep 9, 9:24 pm, kelseywright <[EMAIL PROTECTED]> wrote:
>>
>> > > One think I noticed is that this does not seem compatible with the
>> > > latest release of the SDK (0.9), which removed javax.sound. So many
>> > > many fixes are going to be needed to port it to the new SDK.  Does
>> > > anyone know if there is an API in Android that is intended to replace
>> > > this funcitonality?
>>
>> > > Kelsey
>>
>> > > On Sep 9, 2:02 pm, kelseywright <[EMAIL PROTECTED]> wrote:
>>
>> > > > Hello,
>>
>> > > > Is there any documentation on the current state of the code
>> > > > anywhere?
>>
>> > > > Regards,
>>
>> > > > Kelsey Wright
>>
>> > > > On Aug 22, 3:31 pm, l1ghtm4n <[EMAIL PROTECTED]> wrote:
>>
>> > > > > I've decided to open source the Text2Speech project for Android.
>> > > > > The
>> > > > > code can be found athttp://code.google.com/p/android-text2speech/.
>> > > > > The ultimate goal of the project is to become the standard for
>> > > > > Text2Speech services on the Android platform.
> >
>

-- 
Sent from Gmail for mobile | mobile.google.com

--~--~-~--~~~---~--~~
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] Re: Text2Speech now hosted at google code

2008-09-09 Thread kelseywright

This also uses javax.sound to write the sound file in the first place,
which will need taken care of.

On Sep 9, 4:41 pm, kelseywright <[EMAIL PROTECTED]> wrote:
> My concern would be dealing with javax.sound.sampled.AudioFormat
> though, which is sprinkled throughout the code, and not just in the
> players section.
>
> On Sep 9, 4:28 pm, blindfold <[EMAIL PROTECTED]> wrote:
>
> > The javax.sound stuff should be replaced by equivalent functionality
> > from android.media.MediaPlayer which hopefully it not hard using a low-
> > level wrapper around the audio function calls. However, Android (SDK
> > 0.9 beta) lacks support for in-memory sound synthesis and playback, so
> > one is forced to each time write synthesized speech (e.g., with
> > interpolated phonemes) first to file and then play that file. Might
> > suffice for a first port though.
>
> > Regards
>
> > On Sep 9, 9:24 pm, kelseywright <[EMAIL PROTECTED]> wrote:
>
> > > One think I noticed is that this does not seem compatible with the
> > > latest release of the SDK (0.9), which removed javax.sound. So many
> > > many fixes are going to be needed to port it to the new SDK.  Does
> > > anyone know if there is an API in Android that is intended to replace
> > > this funcitonality?
>
> > > Kelsey
>
> > > On Sep 9, 2:02 pm, kelseywright <[EMAIL PROTECTED]> wrote:
>
> > > > Hello,
>
> > > > Is there any documentation on the current state of the code anywhere?
>
> > > > Regards,
>
> > > > Kelsey Wright
>
> > > > On Aug 22, 3:31 pm, l1ghtm4n <[EMAIL PROTECTED]> wrote:
>
> > > > > I've decided to open source the Text2Speech project for Android. The
> > > > > code can be found athttp://code.google.com/p/android-text2speech/.
> > > > > The ultimate goal of the project is to become the standard for
> > > > > Text2Speech services on the Android platform.
--~--~-~--~~~---~--~~
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] Re: Text2Speech now hosted at google code

2008-09-09 Thread kelseywright

My concern would be dealing with javax.sound.sampled.AudioFormat
though, which is sprinkled throughout the code, and not just in the
players section.

On Sep 9, 4:28 pm, blindfold <[EMAIL PROTECTED]> wrote:
> The javax.sound stuff should be replaced by equivalent functionality
> from android.media.MediaPlayer which hopefully it not hard using a low-
> level wrapper around the audio function calls. However, Android (SDK
> 0.9 beta) lacks support for in-memory sound synthesis and playback, so
> one is forced to each time write synthesized speech (e.g., with
> interpolated phonemes) first to file and then play that file. Might
> suffice for a first port though.
>
> Regards
>
> On Sep 9, 9:24 pm, kelseywright <[EMAIL PROTECTED]> wrote:
>
> > One think I noticed is that this does not seem compatible with the
> > latest release of the SDK (0.9), which removed javax.sound. So many
> > many fixes are going to be needed to port it to the new SDK.  Does
> > anyone know if there is an API in Android that is intended to replace
> > this funcitonality?
>
> > Kelsey
>
> > On Sep 9, 2:02 pm, kelseywright <[EMAIL PROTECTED]> wrote:
>
> > > Hello,
>
> > > Is there any documentation on the current state of the code anywhere?
>
> > > Regards,
>
> > > Kelsey Wright
>
> > > On Aug 22, 3:31 pm, l1ghtm4n <[EMAIL PROTECTED]> wrote:
>
> > > > I've decided to open source the Text2Speech project for Android. The
> > > > code can be found athttp://code.google.com/p/android-text2speech/.
> > > > The ultimate goal of the project is to become the standard for
> > > > Text2Speech services on the Android platform.
--~--~-~--~~~---~--~~
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] Re: Text2Speech now hosted at google code

2008-09-09 Thread blindfold

The javax.sound stuff should be replaced by equivalent functionality
from android.media.MediaPlayer which hopefully it not hard using a low-
level wrapper around the audio function calls. However, Android (SDK
0.9 beta) lacks support for in-memory sound synthesis and playback, so
one is forced to each time write synthesized speech (e.g., with
interpolated phonemes) first to file and then play that file. Might
suffice for a first port though.

Regards

On Sep 9, 9:24 pm, kelseywright <[EMAIL PROTECTED]> wrote:
> One think I noticed is that this does not seem compatible with the
> latest release of the SDK (0.9), which removed javax.sound. So many
> many fixes are going to be needed to port it to the new SDK.  Does
> anyone know if there is an API in Android that is intended to replace
> this funcitonality?
>
> Kelsey
>
> On Sep 9, 2:02 pm, kelseywright <[EMAIL PROTECTED]> wrote:
>
> > Hello,
>
> > Is there any documentation on the current state of the code anywhere?
>
> > Regards,
>
> > Kelsey Wright
>
> > On Aug 22, 3:31 pm, l1ghtm4n <[EMAIL PROTECTED]> wrote:
>
> > > I've decided to open source the Text2Speech project for Android. The
> > > code can be found athttp://code.google.com/p/android-text2speech/.
> > > The ultimate goal of the project is to become the standard for
> > > Text2Speech services on the Android platform.
>
>
--~--~-~--~~~---~--~~
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] Re: Text2Speech now hosted at google code

2008-09-09 Thread kelseywright

One think I noticed is that this does not seem compatible with the
latest release of the SDK (0.9), which removed javax.sound. So many
many fixes are going to be needed to port it to the new SDK.  Does
anyone know if there is an API in Android that is intended to replace
this funcitonality?

Kelsey

On Sep 9, 2:02 pm, kelseywright <[EMAIL PROTECTED]> wrote:
> Hello,
>
> Is there any documentation on the current state of the code anywhere?
>
> Regards,
>
> Kelsey Wright
>
> On Aug 22, 3:31 pm, l1ghtm4n <[EMAIL PROTECTED]> wrote:
>
> > I've decided to open source the Text2Speech project for Android. The
> > code can be found athttp://code.google.com/p/android-text2speech/.
> > The ultimate goal of the project is to become the standard for
> > Text2Speech services on the Android platform.
--~--~-~--~~~---~--~~
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] Re: Text2Speech now hosted at google code

2008-09-09 Thread kelseywright

Hello,

Is there any documentation on the current state of the code anywhere?

Regards,

Kelsey Wright

On Aug 22, 3:31 pm, l1ghtm4n <[EMAIL PROTECTED]> wrote:
> I've decided to open source the Text2Speech project for Android. The
> code can be found athttp://code.google.com/p/android-text2speech/.
> The ultimate goal of the project is to become the standard for
> Text2Speech services on the Android platform.

--~--~-~--~~~---~--~~
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] Re: Text2Speech now hosted at google code

2008-08-25 Thread Nanard

Great idea !

I have no time to help you on this port (or for easy/fast stuff : it's
OK).  And : I also don't know any thing about speech/sound/grammar/...
on this topic.

But I will be pleased to test all versions of it :-)

My project (for ADC I), is a document speaker.  I really needs TTS.
--~--~-~--~~~---~--~~
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 Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Text2Speech now hosted at google code

2008-08-23 Thread blindfold

Great! Looking forward to see Text2Speech complement my Image2Sound
project http://www.seeingwithsound.com/android.htm (The vOICe Android)
through a speech API for blind users. How functional is Text2Speech at
this stage, and what is still missing?

Thanks.

On Aug 22, 9:31 pm, l1ghtm4n <[EMAIL PROTECTED]> wrote:
> I've decided to open source the Text2Speech project for Android. The
> code can be found athttp://code.google.com/p/android-text2speech/.
> The ultimate goal of the project is to become the standard for
> Text2Speech services on the Android platform.

--~--~-~--~~~---~--~~
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 Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Text2Speech now hosted at google code

2008-08-23 Thread Peli

Good idea to go open source!

In what state is the code? Does it work already?

Is it necessary to create a separate Android branch (which may
complicate future development), or could one contribute code changes
back to the FreeTTS project so that it becomes compatible with
Android?

Peli


On 22 Aug., 21:31, l1ghtm4n <[EMAIL PROTECTED]> wrote:
> I've decided to open source the Text2Speech project for Android. The
> code can be found athttp://code.google.com/p/android-text2speech/.
> The ultimate goal of the project is to become the standard for
> Text2Speech services on the Android platform.
--~--~-~--~~~---~--~~
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 Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---