Hi!
I am trying to do an IVR using FAstAGI to say information from my database to my clients. I done AGI doing this but I need now run this from another server, windows server, but I dont know how can I do this.
I checked the Asterisk::fastagi module but it is so confused and I dont understand anything. I did a few AGI perl scripts with...
In Microsoft TTS 5.1 or newer. The SpVoice.AudioOutputStream property says:
The AudioOutputStream property gets and sets the current audio stream object used by the voice.
Setting the voice's AudioOutputStream property may cause its audio output format to be automatically changed to match the text-to-speech (TTS) engine's preferred audi...
I'm trying to track the status of my applications TTS output to a wav file. When speaking the text (to the speaker) the expected events (StartStream, Word, EndStream) are fired, however, no events are fired when outputing to a wave file.
SpVoice vox = new SpVoice();
vox.Word += VoxWord; // Handle word processed event
SpFile...
Ok, so I've downloaded some TTS engines to replace the default microsoft TTS engine, and make my program sound a little more 'human' -- basically i am wondering where abouts the TTS engine files are stored on the local pc (windows 7)
-- the files i have are in .Dat format, does anyone have any idea where abouts the should go to be regis...
i am using Festival c++ Api but in the manual provided at
http://www.cstr.ed.ac.uk/projects/festival/manual/festival_28.html#SEC132
saying to link festival/src/lib/libFestival.a etc.
so please tell me hw to link them with my c++ programme
...
Hello
i am designing a front end for Festival TTS using it's C++ API
Everything is working fine in my programme but i have a problem that i am giving a drop down
option to user to select other languages when user select a language from drop down then
festival tts shows a message on console saying:
SIOD:ran out of storage
This mes...
I have an Android application that makes use of TTS (Text to speech) API. Everything is working perfectly, but now i want to fade in/out or even stop music (in case user is playing music with prebuilt Music Player), when application speaks a text. Right now, i think both music and TTS messages are played on the same stream (MUSIC), and i...
I haven't been able to get a hold of the people over at tomsoft http://www.tomsoft.co.uk/ and I want to know if anyone has used their TTS Engine. I'm debating whether or not to buy it, and I want to know, does it call home? How is it integrated?
I'm also worried that since they are not replying to emails sent long ago, I may not receiv...
I am following these instructions:
http://www.cstr.ed.ac.uk/downloads/festival/2.0.95/do_test
And after
cd ../speech_tools
make test
I have this:
___________
Test Failed
hash regression status. FAILED
Any Idea?
After that,if I try:
cd ../festival
make test
I get:
...
voice script status: CORRECT
test modes (script)
text mo...
Hi,
I am having problems with the festival C++ API (Windows XP).
After I make both festival and speech_tools succesfully (Cygwin), I have a file, called festival_example.cc, which contains:
#include <stdio.h>
#include <festival.h>
int main(int argc, char **argv)
{
EST_Wave wave;
int heap_size = 210000; // default scheme heap...
Hi,
I want to use Festival TTS API with CodeBlocks. I have created a new project, and added in build options>linker settings:
libFestival.a
libestools.a
libestbase.a
libeststring.a
I also added in the global compiler settings>search directories>compiler:
festival\src\include
speech_tools\include
I am using gnu gcc compiler (ming...
Hello
I'm working on a program for tone deaf people. I've working with sapi and a TTs. The program does a 3D animation with a hand at the same time. But the problem is that the voices (also when a put them at its slowest speech) is to fast for what I want. So, I've thought on speech recognition, but the problem is that I've to do a larg...
I'm reasonably lisp-capable, but a total newbie to Festival. I have a server that my sysadmin has outfitted with festival 1.96 (apparently there's no FreeBSD port of 2.x, and he's intensely reluctant to install software where no port exists) that does NOT have the 'text2wave' app; if that's part of a BSD port, it's not obvious which one....
Hi, i own a translation service and now im wanting to implement a TTS solution. Do you know any software that can be executed from php to generate mp3s on the fly for a specific text?
...
I want to write a simple Windows app in Visual C#/C++ that lets users input different segments of text, and then press a set of hotkeys to hear the various text segments in TTS at any time. The program should accept hotkeys while running in background or even when fullscreen applications have focus.
Example use case: user enters "hello ...
In general, I'm very impressed with Android's default text to speech engine (i.e., com.svox.pico). As expected, it mispronounces some words (as do I) and it therefore occasionally needs some pronunciation guidance. So I'm wondering about best practices for phonetically spelling out those words that the pico TTS engine mispronounces.
F...
Passing the following SSML (Speech Synthesis Markup Language) document to the com.svox.pico TextToSpeech engine resulted in a reading of the XML body but no control from the phoneme element or the emphasis element. This result (no apparent SSML control) is the same on a Nexus One running Android 2.2 as well as on the emulator running an...
I am playing with the Android TTS engine. I am trying to set it to speak in Spanish from Mexico, rather than from Spain.
I have tried several combination's of language code / country code but I have not been able to get anything by Spanish from Spain. Here is my code currently
loc = new Locale("es", "MEX");
myTts.setLanguage(loc);
say(...
For an Android application I want to have TTS functionality, but with a my own custom TTS language, ie, the TTS Language won't necessarily correspond to a pre-existing Locale. (for illustration purposes, lets say my app needs to speak Orcish).
How do you make your own TTS Language for Android? I believe it is possible, as there are seve...
Hi, I'm very confused about how to get TTS working in VB 2010 Express. I read several how-tos, each of them showing how to do TTS in a different way (through System.Speech, adding a reference to Microsoft Speech Object Library, using SAPI etc.). Unfortunately none of them works out-of-the box for me, so I need to install additional packa...