Enabling texttospeech FreePBX module on Centos: Difference between revisions

From voipsupport
Jump to navigation Jump to search
(Created page with "Getting Text to speech module to work on centos For google translate Need to install esound-libs: yum install esound-libs Need to download and install mpg123 package which is...")
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
Getting Text to speech module to work on centos
This page refers to some additional requirements for enabling FreePBX texttospeech module on Centos 6. The texttospeech module was an add-on module that has now been replaced by two modules released by Sangoma: tts and ttsengines. Therefore this Howto is being placed in the "Previous Howto" section for historical reference, but probably will no longer be useful.
For google translate
 
Need to install esound-libs:
<strong>For google translate</strong>
yum install esound-libs
 
Need to download and install mpg123 package which is not in standard repositories
You need to install esound-libs:
Also need the perl CGI module installed
 
cpan CGI LWP
<pre>yum install esound-libs</pre>
 
The module relies on the mpg123 software.
 
<pre>cd /to/some/directory (e.g. cd /usr/local/src)
wget http://downloads.sourceforge.net/project/mpg123/mpg123/1.23.4/mpg123-1.23.4.tar.bz2
bunzip2 mpg123-1.23.4.tar.bz2
tar -xvf mpg123-1.23.4.tar
cd mpg123-1.23.4
./configure
make
make install</pre>
 
You also need the folling perl modules
 
<pre>cpan CGI LWP</pre>

Latest revision as of 20:36, 19 June 2016

This page refers to some additional requirements for enabling FreePBX texttospeech module on Centos 6. The texttospeech module was an add-on module that has now been replaced by two modules released by Sangoma: tts and ttsengines. Therefore this Howto is being placed in the "Previous Howto" section for historical reference, but probably will no longer be useful.

For google translate

You need to install esound-libs:

yum install esound-libs

The module relies on the mpg123 software.

cd /to/some/directory (e.g. cd /usr/local/src)
wget http://downloads.sourceforge.net/project/mpg123/mpg123/1.23.4/mpg123-1.23.4.tar.bz2
bunzip2 mpg123-1.23.4.tar.bz2
tar -xvf mpg123-1.23.4.tar
cd mpg123-1.23.4
./configure
make
make install

You also need the folling perl modules

cpan CGI LWP