The Festival Speech Synthesis System
0
votes
0answers
20 views
Festival SIOD ERROR C++
I installed version 2.1 of festival and when compiling the example I get the following error:
SIOD ERROR: unbound variable: SayText.
Here the code:
#include <festival.h>
#include ...
0
votes
1answer
79 views
Sending input to stdin and getting the full output in Java - Festival TTS
I'm trying to use the Java Runtime.getRuntime().exec(String) command to run Festival, then use OutputStreamWriter to write some commands to the outpustream of the process.
This works great, and I'm ...
1
vote
0answers
73 views
How to set parameters for Festival TTS in C++
I am trying to develop a TTS program in linux, using festival. However, I can not find any api for parameters setting, such as rate and voice volume. Anyone have some idea?
Thanks,
1
vote
1answer
342 views
Using Festival from an Asterisk AGI script
This feels like a really silly problem but I just can't figure it out. I am writing an AGI script in Perl using Asterisk::AGI which needs to invoke Festival to read some text to the caller. I know ...
1
vote
1answer
78 views
Generate audio files using Festival
Is it possible to generate audio files in Festival by piping the output to some other program? I'm trying to find out how to convert an xml file to a audio file, using Festival's "singing synthesis" ...
2
votes
3answers
223 views
Exec() command in Linux does not perform any action from a PHP page
I'm trying to run the following command from a PHP file in a web browser:
exec('festival --tts /var/www/test.txt &');
Unfortunately, nothing happens. I thought of trying 'echo' but there is ...
0
votes
1answer
128 views
Convert festival tts to flite tts
i currently have a tts which is built using festival and festvox. i need to convert these voices and build a TTS in flite. apparently you can do the conversion using festvox (the festvox and flite ...
0
votes
0answers
119 views
How to develop localized text to speech using HTS
I need to build HMM based TTS for Sinhala language.
If anyone know about building localized TTS using HTS, please throw me a bone. Any link would be helpful.
currently i'm installing HTS demo. But I ...
1
vote
2answers
385 views
Ambiguous overload for 'operator='
I am trying to compile some C++ code from the Festival project. When I compile Festival, I get the following errors:
Making in directory ./src ...
Making in directory src/arch ...
Making in directory ...
0
votes
2answers
172 views
Compiling parts of Festival code written in C++ in a stand-alone C++ program
I am trying to use selective parts of the Festival code (written in C++) and trying to use them in my own C++ programs. Note that this question is not about using the Festival API but about functions ...
0
votes
1answer
61 views
How to change Festival server_port
Can anyone tell how to change the server_port in Festival? I tried changing it using
set! server_port 1315
but after that the server_port still has 1314 the default value. Can anyone try to solve ...
0
votes
1answer
73 views
Getting a stacktrace & using a debugger with Scheme
I am using Festival (the TTS software) and understanding it. It is written in Scheme and I am trying to get an execution flow for some of the programs therein. My questions are as follows:
Is ...
0
votes
0answers
345 views
How to tune the quality of festival TTS?
I am using 2.1 release of festival. I was able to install and use 172M voice with
(voice_cmu_us_slt_arctic_clunits)
The quality has been significantly improved but far from desired. I believe ...
1
vote
0answers
125 views
Where are the wav files stored in Festival?
I am trying to work with Festival and trying to synthesize a word with the default diphone based voices that come pre-loaded (voice_kal_diphone). I would like to add a few more words in my voice that ...
3
votes
3answers
386 views
Declaration of void abort() throws different exceptions
I am trying to write some C++ code (using the C++ API) for Festival and am getting stuck while trying to compile. Here is how I invoke g++:
g++ -Wall -pedantic -I../ -I../speech_tools/include/ ...
1
vote
1answer
552 views
Compiling festival TTS C/C++ example
I tried to compile the example from here with no luck.
This is the command that i used
g++ festival_test.cpp -Ifestival/src/include/ -Ispeech_tools/include/ -Lfestival/src/lib/ -Lspeech_tools/lib/ ...
2
votes
3answers
575 views
Finding custom includes directories with autoconf
I'm trying to compile a program which uses the festival library.
Basically, the requirements are that you include the festival and estools header directories in the include path, and you include both ...
1
vote
2answers
832 views
German text-to-speech on iPhone (Flite/Festival voices? other options?)
I'm looking to use English, German, French, Spanish and Italian text-to-speech in an iPhone application. It looks like Flite is basically the only option.
...
1
vote
1answer
470 views
Problem Building Festival(Text to Speech) On Ubuntu
I set up a Ubuntu VM today Just to build Festival on Ubuntu (I never ran it before) Then I did the following setups
On the Terminal window I wrote following to install GNU C++ Compiler
sudo ...
-1
votes
1answer
704 views
Windows TTS voices with Festival in Linux
I am looking to programatically generate text to speech wave files on my Ubuntu box and the Festival and Text2Wave tools in Ubuntu seem to do a pretty good job of this, except for the generally poor ...
15
votes
9answers
19k views
High-Quality Text-To-Speech engine for personal use
I'm looking for a high-quality TTS engine that I can afford (let's say less than 1000$). So far, I've tried flite and festival with default voices. However, while the results are certainly ...
3
votes
1answer
1k views
Where to download Festival TTS voice
Where can I download the voices available in Festival demo page?
2
votes
1answer
409 views
Debug a Adobe AIR application which uses NativeProcess API to invoke a executable
How can I find the return value of a executable which has been invoked by a AIR app using the NativeProcess API? I am using Flash Builder 4. The following c++ generated executable
festival --tts ...
1
vote
0answers
164 views
Windows CLI Integration in Adobe AIR 2.0 using NativeProcess for executable which opens own shell and blocks
How can I use the NativeProcess API in Adobe AIR 2.0 to do CLI in Windows like passing the following commands to cmd.exe
cd C:\FestivalTTS
echo "Hello world" | festival --tts
The problem is unlike ...
1
vote
1answer
314 views
Suggestions for running Festival TTS from Flex4 Adobe AIR application
I'm trying to run Festival text to speech from a AIR 2 app.
Here's a sample code for starting notepad
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication ...
0
votes
4answers
110 views
Exploding acronyms to ensure a synthesizer reads them properly?
If I feed a speech synthesizer (festival, in this case, but it applies to all) the following bit of text:
"At the USPGA championship in the US, the BBC reporter went MIA".
it reads
"At the uspga ...
0
votes
1answer
1k views
Festival TTS API / CodeBlocks Build problems!
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 ...
0
votes
1answer
804 views
Festival C/C++ API compiling an example, linking libraries error
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 ...
0
votes
1answer
158 views
Make test error (Festival 2.0.95 & Windows XP & Cygwin)
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. ...
0
votes
1answer
243 views
Festival TTS showing SIOD:ran out off storage message
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 ...
2
votes
2answers
214 views
SIOd: ran out of storage in festival
While running the C++ code for festival,i am using multiple languages like american diaphone,italian etc. but when after playing for one language,i select another language then the terminal shows the ...
1
vote
1answer
859 views
/usr/bin/ld: cannot find -llibeststring.a
I am using festival TTS c++ API in my program.I have downloaded all files from http://www.cstr.ed.ac.uk/downloads/festival/2.0.95/
and install festival and speech_tools successfully on my UBUNTU 10.04
...
0
votes
2answers
2k views
How to use Festival Text To Speech C/C++ API
I want to use Festival TTS with my C++ programme.
So i have downloaded all files form http://www.cstr.ed.ac.uk/downloads/festival/2.0.95/
then i start reading ...
1
vote
1answer
477 views
How to link festival TTS libraries in a C++ programme using g++
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 ...
1
vote
1answer
400 views
Getting started with Festival (on iphone)
I'd like to use Festival in an iPhone app. Is this possible, considering the way Festival generates and then plays back audio files? Can I pass Festival an audio file directly from itself to play ...
0
votes
0answers
110 views
Long lines all messed up on a console application
I am trying to use a text-to-speech engine, festival, in Windows. I found a pre-compiled binary online, so I can't really re-compile without a whole lot of effort. Here's what happens. I run the ...
2
votes
1answer
117 views
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 ...
0
votes
1answer
613 views
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 ...
3
votes
1answer
595 views
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 ...
0
votes
3answers
1k views
Compiling Festival on MingW32
I'm trying to compile Festival on MingW32, so I can have a Windows binary. I couldn't find the Windows binary on their site. Anyone have one they can post?
If not, here's what I have so far. I did ...
1
vote
2answers
2k views
What the performance of Festival TTS vs FreeTTS on windows platforms?
9 hours ago I had the wonderful idea to build up from scratch Festival TTS on Windows.
In the meanwhile, and in less than 30 minutes, I build up the same source code on Linux, but only because tons ...
