Flite For Asterisk

March 20, 2016 ยท View on GitHub

=========================================== Flite For Asterisk

This provides the "Flite" dialplan application, which allows you to use the Flite TTS Engine with Asterisk. This module invokes the Flite TTS engine locally, and uses it to render text to speech. It works with asterisk versions 1.6.x or later


Requirements

Asterisk 1.6.1 (or later) header files Flite 1.4 (or later) libraries and header files


Installation

makemake make install

To install the sample configuration file, issue the following command:

$ make samples


Usage

Flite(text[,intkeys]) This will invoke the Flite TTS engine, send a text string, get back the resulting waveform and play it to the user, allowing any given interrupt keys to immediately terminate and return the value, or 'any' to allow any number back.


Examples

dialplan sample code for your extensions.conf

;Flite Demo exten => 1234,1,Answer() exten => 1234,n,Flite("This is a simple F lite test in english.",any) ;Read a text file from disk and pass it to flite exten => 1234,n,ReadFile(MYTEXT=/path/myfile,200) exten => 1234,n,Flite("${MYTEXT}",any) exten => 1234,n,Hangup()


License

The Flite module for asterisk is distributed under the GNU General Public License v2. See COPYING for details.


Homepage

http://zaf.github.io/Asterisk-Flite/