forked from rampa069/app_picotts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
54 lines (43 loc) · 1.46 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
===========================================
PicoTTS For Asterisk
===========================================
Updated to build for Asterisk 13.
This provides the "PicoTTS" dialplan application, which allows you to use
the PicoTTS TTS Engine with Asterisk. This module invokes the PicoTTS TTS engine
locally, and uses it to render text to speech.
------------
Requirements
------------
Asterisk 13 header files
Should be OK with Asterisk 11 and maybe others but has not been tested.
sox 14 or greater installed and executable in the default path
pico2wave installed and executable in the default path
------------
Installation
------------
$ make
$ make install
To install the sample configuration file, issue the following command after
the 'make install' command:
$ make samples
-----
Usage
-----
PicoTTS(text.language[,intkeys]) This will invoke the PicoTTS 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
;PicoTTS Demo
exten => 1234,1,Answer()
exten => 1234,n,PicoTTS("This is a simple test in english.",any,en-US)
exten => 1234,n,PicoTTS("Esto es una prueba en español.",any,es-ES)
exten => 1234,n,Hangup()
-------
License
-------
The PicoTTS module for asterisk is distributed under the GNU General Public
License v2. See COPYING for details.