Skip to content

pete1019/Google_TTS_VitalPBX

 
 

Repository files navigation

Google Text to Speech (TTS) in VitalPBX

VitalPBX Google TTS

This script makes use of Google's translate text to speech service in order to render text to speech and play it back to the user. It supports a variety of different languages.

This TTS service is 'unofficial' and not supported by Google, it can be terminated at any point with no warning. People looking for TTS solutions to base their projects/products on should look for alternative, officially supported services.

Requirements

Perl: The Perl Programming Language
perl-libwww-perl: The World-Wide Web library for Perl
perl-LWP-Protocol-https: For HTTPS support
sox: Sound eXchange, sound processing program
mpg123: MPEG Audio Player and decoder
Internet access in order to contact google and get the voice data.

Installation

Install dependencies

[root@vitalpbx ~]# yum install perl perl-LWP-Protocol-https mpg123 sox perl-libwww-perl

Copy googletts.agi to your agi-bin directory.

[root@vitalpbx ~]# cd /var/lib/asterisk/agi-bin/
[root@vitalpbx ~]# wget https://github.com/VitalPBX/Google_TTS_VitalPBX/blob/master/googletts.agi
[root@vitalpbx ~]# chown asterisk:asterisk googletts.agi
[root@vitalpbx ~]# chmod +x googletts.agi

Usage

agi(googletts.agi,"text",[language],[intkey],[speed]): This will invoke the Google TTS engine, render the text string to speech and play it back to the user. If 'intkey' is set the script will wait for user input. Any given interrupt keys will cause the playback to immediately terminate and the dialplan to proceed to the matching extension (this is mainly for use in IVR, see README for examples). If 'speed' is set the speech rate is altered by that factor (defaults to 1.2).

The script contacts Google's TTS service in order to get the voice data which then stores in a local cache (by default /tmp/) for future use. Parameters like default language, enabling or disabling caching and cache dir can be set up by editing the script.

Examples

sample dialplan code for your extensions.conf

[cos-all](+)
;GoogleTTS Demo
;PLayback messages to user

exten => *887,1,Answer()
  ;;Play mesage in English:
exten => *887,n,agi(googletts.agi,"This is a simple VitalPBX text to speech in english, powered by Google",en)
  ;;Play message in Spanish:
exten => *887,n,agi(googletts.agi,"Esta es una prueba simple de texto a voz de VitalPBX en espanol, con tecnologia de Google.",es)
exten => *887,n,Hangup()

;A simple dynamic IVR using GoogleTTS

exten => *8870,1,Answer()
exten => *8870,n,Set(TIMEOUT(digit)=5)
exten => *8870,n,agi(googletts.agi,"Welcome to my small interactive voice response menu.",en)
    ;;Wait for digit:
exten => *8870,n(start),agi(googletts.agi,"Please dial a digit.",en,any)
exten => *8870,n,WaitExten()

    ;;PLayback the name of the digit and wait for another one:
exten => _X,1,agi(googletts.agi,"You just pressed ${EXTEN}. Try another one please.",en,any)
exten => _X,n,WaitExten()

exten => i,1,agi(googletts.agi,"Invalid extension.",en)
exten => i,n,goto(s,start)

exten => t,1,agi(googletts.agi,"Request timed out.",en)
exten => t,n,goto(s,start)

exten => h,1,Hangup()

Supported Languages

Afrikaans: af
Albanian: sq
Amharic: am
Arabic: ar
Armenian: hy
Azerbaijani: az
Basque: eu
Belarusian: be
Bengali: bn
Bihari: bh
Bosnian: bs
Breton: br
Bulgarian: bg
Cambodian: km
Catalan: ca
Chinese Simplified: zh-CN
Chinese Traditional:zh-TW
Corsican: co
Croatian: hr
Czech: cs
Danish: da
Dutch: nl
English: en
Esperanto: eo
Estonian: et
Faroese: fo
Filipino: tl
Finnish: fi
French: fr
Frisian: fy
Galician: gl
Georgian: ka
German: de
Greek: el
Guarani: gn
Gujarati: gu
Hausa: ha
Hebrew: iw
Hindi: hi
Hungarian: hu
Icelandic: is
Indonesian: id
Interlingua: ia
Irish: ga
Italian: it
Japanese: ja
Javanese: jw
Kannada: kn
Kazakh: kk
Kinyarwanda: rw
Kirundi: rn
Korean: ko
Kurdish: ku
Kyrgyz: ky
Laothian: lo
Latin: la
Latvian: lv
Lingala: ln
Lithuanian: lt
Macedonian: mk
Malagasy: mg
Malay: ms
Malayalam: ml
Maltese: mt
Maori: mi
Marathi: mr
Moldavian: mo
Mongolian: mn
Montenegrin: sr-ME
Nepali: ne
Norwegian: no
Norwegian Nynorsk: nn
Occitan: oc
Oriya: or
Oromo: om
Pashto: ps
Persian: fa
Polish: pl
Portuguese: pt
Portuguese Brazil: pt-BR
Portuguese Portugal:pt-PT
Punjabi: pa
Quechua: qu
Romanian: ro
Romansh: rm
Russian: ru
Scots Gaelic: gd
Serbian: sr
Serbo-Croatian: sh
Sesotho: st
Shona: sn
Sindhi: sd
Sinhalese: si
Slovak: sk
Slovenian: sl
Somali: so
Spanish: es
Sundanese: su
Swahili: sw
Swedish: sv
Tajik: tg
Tamil: ta
Tatar: tt
Telugu: te
Thai: th
Tigrinya: ti
Tonga: to
Turkish: tr
Turkmen: tk
Twi: tw
Uighur: ug
Ukrainian: uk
Urdu: ur
Uzbek: uz
Vietnamese: vi
Welsh: cy
Xhosa: xh
Yiddish: yi
Yoruba: yo
Zulu: zu

Security Considerations

This script contacts Google servers in order to get voice data. The script uses TLS to encrypt all the traffic between your pbx and these servers so no 3rd party can eavesdrop your communication, but your data will be available to Google under a not yet defined policy.

Tiny version

The '-tiny' suffixed scripts use the HTTP::Tiny perl module instead of LWP::UserAgent. This makes them a lot faster when run in small embedded systems or boards like the Raspberry pi. They can be used as an in-place replacement of the normal versions of the TTS scripts and expose the same interface/cli args. To use them just make sure you have HTTP::Tiny installed. In debian or ubuntu based distros: 'apt-get install libhttp-tiny-perl' In distros that don't have it in their repos: 'cpan HTTP::Tiny' It also requires mp3 format support in sox in order to avoid the use of mpg123.

License

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

Authors

Lefteris Zafiris (zaf@fastmail.com)

VitalPBX Integrator

Rodrigo Cuadra (rcuadra@vitalpbx.com)

Homepage

https://github.com/VitalPBX/Google_TTS_VitalPBX/

About

Google Text to Speech (TTS) in VitalPBX

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Perl 95.2%
  • Shell 4.8%