Eran
Eran

Reputation: 1712

Text to speech in as3

I am looking for a text to speech component that i can use with as3/flex .

Thanks

Upvotes: 3

Views: 5294

Answers (3)

Paul Dixon
Paul Dixon

Reputation: 4267

I ported a HMM based TTS engine to Flash using the Alchemy compiler. Demos, explanation and code are here:

http://www.edobashira.com/2010/01/flitehts-engine-for-flash-hmm-speech_22.html http://www.furui.cs.titech.ac.jp/~dixonp/hts/

Upvotes: 6

Pranav Negandhi
Pranav Negandhi

Reputation: 1624

I'm not sure if you mean to do it on the web or on the desktop. In fact, I didn't even know you could do it on the web until I saw James' reply up above.

I had done a TTS desktop application in Flash embedding the Flash ActiveX inside a C# application. The Flash movie sent a message to the shell using the ExternalInterface API, which in turn passed it on to a TTS ActiveX. I can't recall the name of the ActiveX we used, but there are several decent options to choose from. Turned out quite sweet.

Upvotes: 1

James Ward
James Ward

Reputation: 29433

I have an example of how to do this on my blog:
http://www.jamesward.com/2009/10/01/text-to-speech-in-flex/

Upvotes: 3

Related Questions