Questions tagged [festival]

The Festival Speech Synthesis System

Festival offers a general framework for building speech synthesis systems.

88 questions
0
votes
1 answer

How can I install the "sub" library for g++ compilation for Festvox?

I'm trying to configure and make festvox, but when I attempt making it, g++ shows errors with things such as -fpermissive and how it cannot locate the library "sub". How can I get the library? Here is a part of the logs: making in…
TheRyGuy
  • 35
  • 1
  • 5
0
votes
0 answers

Festival TTS, read last line with awk filter, using tail -f

I have been trying to make this work for a while now. Whenever a new line is written, I'd like festival to read this line for me. Now I am not sure how to do this. Ive tried piping festival with tail -f but that does not work. Does anyone have…
0
votes
1 answer

Toolkit to implement Text-to-Speech system for native language

I am creating a TTS system for a native language from which i would create a database of voice recordings from the native people. I have no experience with Natural Language Processing, and so i would like to know if there are some current tools to…
Michael Anaman
  • 199
  • 4
  • 15
0
votes
1 answer

when install the festival tts does not work make command

I am trying to create a new voice for my final year project in university. Hence I am using Festival tts and festvox but when i install festival an error coming. it shows flowing image. how can i resolve this error
thilina.gg
  • 31
  • 2
  • 9
0
votes
0 answers

Too Few Observation Sequences while training new voice for MarryTTS

I'm trying to build a new voice for MaryTTS in German for a while now, but didn't succeed so far. I followed a tutorial (https://github.com/marytts/marytts/wiki/HMMVoiceCreation) and tried to understand each step. No matter what I do, I get stuck at…
Poehli
  • 307
  • 4
  • 16
0
votes
1 answer

Basic festival program has undefined reference errors

I am currently trying to compile this basic festival program #include #include #define HEAP_SIZE 210000 #define LOAD_INIT_FILES 1 using namespace std; int main() { festival_initialize(LOAD_INIT_FILES,…
0
votes
1 answer

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 voices and lack of accents. The only TTS I can…
Darren
  • 3,049
  • 5
  • 21
  • 21
0
votes
1 answer

Why does Festival / Scheme stop speaking?

I have a Festival / Scheme file speakall.scm with the contents: (voice_kal_diphone) (tts "file1.txt" nil) (tts "file2.txt" nil) If I ask Festival to play either file1.txt or file2.txt, it reads the entire file. However, when combined into the…
Ubuntourist
  • 775
  • 11
  • 26
0
votes
1 answer

SIOD ERROR: not a number

Some times when i use (SayText " ") it gives the following error SIOD ERROR: not a number. For example festival> (SayText "ਮੇਰਾ ਨਾਮ") means (SayText"mera naam") SIOD ERROR: not a number festival> (SayText " ਨਾਮ ") SIOD…
0
votes
0 answers

EST error: could not find diphone pairs

I am defining the new voice (Punjabi) in festival using diphone concatenation approach. I have created all the necessary files. Firstly I am trying toy example for one word i.e. "ksr" ("ਕਸਰ" in punjabi ) I have added phones and their features in…
0
votes
2 answers

SIOD error while compiling festival with hts in ubuntu

I tried to compile HTS-demo_CMU-ARCTIC-SLT on Ubuntu16.10. /hts/HTS-demo_CMU-ARCTIC-SLT$ ./configure --with-fest-search-path=$HOME/hts/festival/examples \ --with-sptk-search-path=$HOME/hts/SPTK-3.10/bin \ …
you
  • 1
  • 2
0
votes
1 answer

ROS Voice recognition

Short summary of what I tried to do and what it's actually doing. In my project I have two simple nodes: one for listening and publishing, and another for speaking and subscribing. I named them listeningNode and speakingNode, respectively. The task…
Marco Neves
  • 141
  • 15
0
votes
1 answer

Writing a shell script to generate wave files

I was looking at writing a script to convert the contents of a .txt file to .wav files. The command that currently does is : text2wave textFileName.txt -o wavFileName.wav So, pretty simple command. It looks at what's inside the .txt file and…
Marco Neves
  • 141
  • 15
0
votes
1 answer

memory management error while installing festival 2.4

I am trying to install festival 2.4 in fedora 24, I have installed the tool with a few warnings alone, when I try to invoke the festival command using "bin/festival" it gives a memory management error on the usage of free() function. I understand it…
sarvai
  • 13
  • 1
  • 5
0
votes
4 answers

How do I take a string and make festival say it

How do I take a string such as: K = "Hello User" and use it in the code that says it using festival tts: os.system('echo "Hello user." | festival --tts')? Is there a way to do it some other way (1st way would be better) I tried searching to do this…
ConfidingOz
  • 47
  • 3
  • 9