text-to-speech

How to make Python speak ?

How could I make Python say some text ? I could use Festival with subprocess but I won't be able to control it (or maybe in interactive mode, but it won't be clean) Is there a Python tts library ? Like an API for Festival, eSpeak, ... ? ...

Text to Speech in j2me

Anyone know of a good text-to-speech solution for j2me? I know it's not officially supported by any devices or in any JSR, but wondering if there are any free libraries that can do it? What about some kind of integration between j2me and python to allow this to happen? I need to add this to a big j2me application, so re-writing the wh...

Command line SAPI text-to-speech to WAV/MP3

As the title says I need to be able to create a WAV or MP3 file using SAPI on Windows XP. I can install basically anything needed if anyone can recommend a third party application which would allow me to do this. In terms of programming languages really only VB6 is available on the target machine (yeah...) so if anyone can recommend a ...

Strange problem with System.Speech Speech Synthesizer

I'm working on a program that includes speech synthesis. A few weeks ago, I wrote the introductory using (SpeechSynthesizer s = new SpeechSynthesizer()) { s.SetOutputToWaveFile("file.wav"); s.Speak(textBox1.Text); } program. It worked just fine. I crossed off "research speech synthesis" from my task lis...

Are the SpeakCompletedEventArgs of the SpeechSynthesizer inaccurate?

Using the System.Speech.Synthesis.SpeechSynthesizer class in .Net 3.5, the AudioPosition property of the SpeakProgressEventArgs appears to be inaccurate. The following code produces the following output: Code: using System; using System.Speech.Synthesis; using System.Threading; namespace SpeechTest { class Program { stat...

Talking head library for Mac OS X

Is there a "talking head" library for Mac OS X / Cocoa / Objective-C? Specifically the ones that simplify translating spoken text into visemes / facial expressions? Microsoft has "Microsoft Agent" as part of their Text to Speech API, does the Mac has a worthy competitor for this feature? ...

Simple Webmethod times out

I have a very simple Webmethod (asmx) that creates a file. For some reason, it times out. When I step through the code, the code that creates the file takes < 1 second, but when I get to the last line of the method, it times out. Any reason why this might be happening? I use System.Speech in the webmethod. [WebMethod] public void Synth...

Speechlib on Shared hosting - ASP.NET

I am trying to use SpeechLib on my personal website. It's a very simple app that saves some text to a wav file - standard stuff. Works great on the dev machine. But all hell breaks loose when I deploy it to the shared host. Sometimes I get prompted for user name and password at the time of writing the wav file. Sometimes, I get the "Sec...

Voice recogntion engines for embedded applications

I am trying to research available voice recognition engines and SDK for developing a Windows CE voice enabled application. I've run across Nuance, but don't see much of anything else. I would prefer a .Net SDK if possible, but I imagine most would be C/C++. I appreciate any suggestions. Thanks. ...

text to voice software

Which programming language is suitable to create an application software like text to voice converter. ...

Text to speech in as3

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

.NET 3.0 Text to speech WAV output too big and slow process

I wrote a little application that takes in some text and converts it to an audio wav. now, it works fine except that the wav file produced is too big. I'm looking on ways to make the wav output smaller and make the whole process take less time. Sample Code : public byte[] ConvertText2Wav(string text) { MemoryStream wavAud...

Text to MP3 using System.Speech.Synthesis.SpeechSynthesizer

I am trying to get a text-to-speech to save to an MP3. Currently I have the System.Speech.Synthesis speaking to a WAV file nicely. With New System.Speech.Synthesis.SpeechSynthesizer '.SetOutputToWaveFile(pOutputPath) This works fine .SetOutputToWaveStream(<<Problem bit>>) .Speak(pTextToSpeak) .Se...

Interop.SpeechLib.dll COM Exception

I am using SpeechLib for a very simple text to voice conversion. Works great locally. When I deploy the applcation on to the server, I get the exception: could not be found. (Exception from HRESULT: 0x80030002 (STG_E_FILENOTFOUND)) I have done the following with no luck: Set the AppPool to run using the LocalSystem Have given write ...

Text-to-Speech in Emacs

I'm not blind, I just want to have a way to have my Windows machine read the contents of a buffer outloud. Here are the basic requirements: Read any English text buffer. Pause the reading at any time and resume at any time (not wait a few minutes for a big buffer to finish when someone walks into my office). Adjust the read-back speed...

Controlling Festival Output

I am working on improving Festival on Emacs. I need better control of Festival when it reads a sentence. Basically, I need two things: Show what word is being read. Change the speed (and maybe pitch) of what is being read. Ideally, there would be some data structure output by Festival that would link offset/length (usually the star...

Debugging a Scheme program

I am using Festival, a text-to-speech synthesizer, for a project. It has a Scheme scripting language. I'm very new to scheme and hope someone can help. I just want to see the current configuration parameters of Festival. I have a Scheme prompt and can change existing parameters with the following commands: festival> (Parameter.set ...

System.Speech.Synthesis and Windows Server 2003

Has anyone got System.Speech.Synthesis work on Windows Server 2003? I have a simple TTS that works on XP, but on Windows Server 2003, I get the system.invalidoperation exception. I hope the solution is not to use the Voice Server. EDIT: Anyone? Any help? Please? ...

Microsoft Sam, SAPI alternatives

We have a application that we were planing to use Microsoft speech API for. Now we tested it on Windows XP using Microsoft Sam voice and frankly it sound terrible ... It's almost impossible to hear what the voice is trying to say. Are there other, better voice. Are there any updates or newer versions out there that are better. Are there...

Is there a speech to text API by Google?

In Android, you can say something and it will search it for Google. Google can turn speech into text. How can I leverage this API? ...