Skip to content

A small fast portable speech synthesis system

License

Notifications You must be signed in to change notification settings

Pummelo65/arduino-flite

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flite: a small speech synthesis engine library for Arduino

Flite (festival-lite) is a small, fast run-time open source text to speech synthesis engine developed at Carnegie Mellon University (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.

I created this project with the intention to provide Flite as Arduino Library which supports different output alternatives:

Installation

You can download the library as zip and call include Library -> zip library. Or you can git clone this project into the Arduino libraries folder e.g. with

cd  ~/Documents/Arduino/libraries
git clone pschatzmann/arduino-flite.git

Documentation

Here is the generated Class documentation for the Arduino API. Further information on Flite can be found in the FLITE.md

Output Format

The generated output format is usually as follows

Parameter Value
bits_per_sample 16
channels 1
sample_rate 8000

Memory Requirements

The memory requirements depend very much on the selected voice. Currently the minimal voice is cmu_us_kal:

voice Progmem Dynamic Memory
cmu_us_kal 2.34M 16632

The requirements have been determined by compiling the project for an ESP32. Please note that all voices are exeeding the possibilities of most microcontrollers, so this project project is of limited value and I try to find some better alternatives.

Licence

see COPYING

About

A small fast portable speech synthesis system

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 99.9%
  • Other 0.1%