Questions tagged [flite]

The flite tag refers to the speech synthesizer from Carnegie Mellon University

CMU Flite (festival-lite) is a small, fast run-time open source text to speech synthesis engine developed at CMU and primarily designed for small embedded machines and/or large servers. Flite is designed as an alternative text to speech synthesis engine to Festival for voices built using the FestVox suite of voice building tools. (source: http://www.festvox.org/flite/)

32 questions
1
vote
0 answers

Android crt0.o error while making flite/main folder in android flite

I am getting the following error when I'm trying to make in flite/main folder of android flite android-ndk-r4-crystax/build/prebuilt/linux-x86/arm-eabi-4.4.0/bin/../lib/gcc/arm-eabi/4.4.0/../../../../arm-eabi/bin/ld: crt0.o: No such file: No such…
Gandhi
  • 11
  • 1
0
votes
1 answer

register_cmu_us_kal() function in flite

I'm a beginner to unix as well as to the flite. #include "flite.h" cst_voice *register_cmu_us_kal(); int main(int argc, char **argv) { cst_voice *v; if (argc != 2) { fprintf(stderr,"usage: flite_test FILE\n"); …
Angus
  • 12,133
  • 29
  • 96
  • 151
0
votes
2 answers

warning: data definition has no type or storage class = flite compilation warning

vi example.c #include #include "flite.h" register_cmu_us_kal(); int main(int argc,char** argv) { cst_voice *v; if(argc!=2) { fprintf(stderr,"usage:file_test FILE\n"); exit(-1); } flite_init(); v=register_cmu_us_kal(NULL); …
Angus
  • 12,133
  • 29
  • 96
  • 151
0
votes
1 answer

Flite TTS Sample Rate

Is it possible to change the sample rate of the audio output in flite tts? The default output is 16 kHz PCM and I'd like to change it to output 8 kHz.
0
votes
1 answer

can i change the default voices from FLite?

i am working on tts application it needs to convert text into different voices like Male ,Female and childs voice i had tried some how but it's not working, [fliteEngine setVoice:@"cmu_us_kal16"]; [fliteEngine setPitch:300.0 variance:1.1…
Aadil
  • 713
  • 2
  • 12
  • 30
0
votes
1 answer

how to include Flite in C++ project with cmake?

I've to use a TTS engine in my application and I tried to use Flite. I've installed it and tested it from command line just fine but when I tried to put it into my application I couldn't get it to work. I've already searched the web with no success…
0
votes
1 answer

how to compile flite tts and use in c# code?

i need to know the steps to compile the flite tts using cygwin and then how can i generate DLL file to use it in c# code
emykindman
  • 193
  • 1
  • 3
  • 8
0
votes
1 answer

Input selection to a command

In this case I want flite (speech synthesizer) to read my selected text when I press a hotkey. The command is flite -t "text i want to read" How?
0
votes
1 answer

How to build flite test project for windows 8?

I tried the C example in the documentation, but I can't make it work. I am not sure what files do I need in the include and lib directories and how to set the FLITEDIR variable because I am using Windows 8.1 and VS2015. In example: gcc -Wall -g…
0
votes
1 answer

Flite Text to Speech not working properly

I tried following this post to get flite tts to work on raspberry pi 3, but unfortunately when I try flite -t "word" Nothing is read out but when I try flite -t "All good men come to the aid of the rebellion" Only "come to the aid of the…
4bdu1
  • 335
  • 2
  • 12
0
votes
1 answer

My TTS is not working in Android Lollipop (21)

I have created a TTS engine based on Flite for Android which works well on all versions below 21. But when I run it in an Android Lollipop emulator, in the Text-to-Speech Settings screen, the option for reading a sample text is disabled and when I…
Mousa
  • 2,190
  • 3
  • 21
  • 34
0
votes
1 answer

Flite tts demo fails to run

I have recently been trying to use the Flite text-to-speech system (2.0) in a project of mine and when I call flite_text_to_speech() the program exits with this message: VAL: tried to access lexicon in -1 type val I made a small test program based…
i-am-wells
  • 61
  • 4
0
votes
1 answer

How to convert hts voice to Flite for android voice

Our company some time ago has developed a TTS voice for HTS engine. Now we were exploring to see if there's any way to use it with any TTS engine on Android. But so far there was no success. I found that Festival can use HTS voices and Flite can…
Mousa
  • 2,190
  • 3
  • 21
  • 34
0
votes
1 answer

Size overhead of Flite TTS engine

I want to integrate Flite TTS into my iOS app. The Flite download is close to 68 MB. The source files added to the project occupy a lot of size. I want to know the extra overhead of using Flite TTS library in my iOS app.
vijayst
  • 20,359
  • 18
  • 69
  • 113
0
votes
1 answer

tts Service explanation in android

I have questions regarding the implementation of tts service for android. Here's the deal: -I've looked over Flite code and I see that service is require to have these 3 activities:
someone
  • 23
  • 1
  • 5