한국어

IPPBX/GW

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

    
페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


Text to speech for asterisk using Google Translate

2017.08.24 10:23

admin 조회 수:25152

http://zaf.github.io/asterisk-googletts/



AGI script for the Asterisk open source PBX which allows you to use Googles' voice synthesis engine to render text to speech.

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 (See README for a complete list), local caching of the voice data and also supports 8kHz or 16kHz sample rates to provide the best possible sound quality along with the use of wideband codecs.

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.

Dependencies

perl : The Perl Programming Language
perl-libwww : The World-Wide Web library for Perl
Perl-Crypt-SSLeay or perl-IO-Socket-SSL for SSL/TLS encryption
sox : Sound eXchange, sound processing program
mpg123 : MPEG Audio Player and decoder
format_sln : Raw slinear module for asterisk
Internet access in order to contact google and get the voice data.

Install

To install copy googletts.agi to your agi-bin directory.
Usually this is /var/lib/asterisk/agi-bin/
To make sure check your /etc/asterisk/asterisk.conf file.

Usage

agi(googletts.agi,text,[language],[intkey]): 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 (for use in IVR). 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, use of cache and cache dir can be set up by the user.

Asterisk dialplan example:

;GoogleTTS Demo

exten => 1234,1,Answer()
  ;;Play mesage in English:
exten => 1234,n,agi(googletts.agi,"This is a simple google text to speech test in english.",en)
  ;;Play message in Spanish:
exten => 1234,n,agi(googletts.agi,"Esta es una simple prueba en español.",es)
  ;;Play message in Greek:
exten => 1234,n,agi(googletts.agi,"Αυτό είναι ένα απλό τέστ στα ελληνικά.",el)
  ;;Play message in Japanese:
exten => 1234,n,agi(googletts.agi,"これは、日本の簡単なテストです。良い一日を。",ja)
  ;;Play message in simplified Chinese:
exten => 1234,n,agi(googletts.agi,"这是一个简单的测试,在中国。有一个愉快的一天。",zh-CN)
;A simple dynamic IVR using GoogleTTS

[my_ivr]
exten => s,1,Answer()
exten => s,n,Set(TIMEOUT(digit)=5)
exten => s,n,agi(googletts.agi,"Welcome to my small interactive voice response menu.",en)
        ;;Wait for digit:
exten => s,n(start),agi(googletts.agi,"Please dial a digit.",en,any)
exten => s,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()

License

The google TTS script for asterisk is free software distributed under the GNU General Public License version 2

Authors

Lefteris Zafiris (zaf@fastmail.com)

Download

The latest version is available in either zip or tar format.

You can also clone the project with Git by running:

$ git clone git://github.com/zaf/asterisk-googletts

Links

Speech recognition for Asterisk
Text translation using Google Translate API for Asterisk
Speech synthesis using Microsoft Translator API for Asterisk
Asterisk Flite text to speech module
Asterisk e-Speak text to speech module

번호 제목 글쓴이 날짜 조회 수
98 php memory and filesize increase upload wav admin 2019.06.25 7405
97 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 8435
96 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 14863
95 Configuring Your PBX admin 2017.08.17 22971
94 how-to-freepbx-13-firewall-setup admin 2017.08.14 23014
93 Asterisk dialolan detail explan good easy clean admin 2017.08.26 23014
92 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 23153
91 asterisk XactView V3-CRM Widget admin 2017.08.24 23214
90 IVR actions asterisk admin 2017.08.31 23255
89 Google letter agi admin 2017.08.26 23304
88 /sbin/service httpd start stop web start stop admin 2017.08.16 23311
87 Asterisk 13 Debian 8 admin 2015.11.13 23325
86 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 23380
85 User Control Panel (UCP) 14+ admin 2017.08.23 23382
84 FreePBX 12 – Getting Started Guide admin 2017.08.29 23387
83 download Installing+AsteriskNOW admin 2017.08.25 23398
82 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 23440
81 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 23454
80 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 23460
79 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 23499
78 thirdlane PBX price admin 2017.08.23 23530
77 Text to Speech User Guide admin 2017.08.24 23535
76 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 23542
75 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 23582
74 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 23594
73 SUGAR CRM admin 2017.08.23 23607
72 Configuring an Asterisk server admin 2015.05.05 23624
71 OPUS and VP9 Bitrates admin 2017.08.17 23625
70 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 23627
69 asterisk IVR 쉽게 설정하기 admin 2017.08.16 23634
68 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 23737
67 Top 10 greater worker admin 2017.08.26 23738
66 TwistedWave Online A browser-based audio editor admin 2017.08.25 23761
65 Insert into dialplan Asterisk admin 2017.08.26 23842
64 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 23843
63 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 23874
62 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 23893
61 Asterisk 설치 준비 admin 2015.11.15 23899
60 FreePBX – Custom FAX to email admin 2015.05.05 23901
59 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 23949
58 FaxServer using Asterisk admin 2015.05.05 23950
57 Generic Asterisk SIP Configuration Guide admin 2015.05.05 23957
56 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 23957
55 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 23958
54 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 23959
53 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 23971
52 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 24004
51 Asterisk A simple IVR admin 2015.05.05 24009
50 How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 24013
49 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 24015
48 fax licenses Asterisk admin 2015.05.05 24019
47 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 24057
46 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 24059
45 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 24081
44 FAX over IP sofware admin 2015.05.05 24098
43 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 24142
42 T.38 Fax Gateway Asterisk admin 2015.05.05 24201
41 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 24225
40 Incoming Fax Handling admin 2015.05.05 24244
39 iptables for asterisk simple example configuration admin 2017.08.31 24270
38 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 24271
37 Installing SNG7 Official Distro admin 2017.08.17 24292
36 AGI asterisk gateway interface synopsis admin 2017.08.26 24360
35 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 24374
34 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 24383
33 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 24395
32 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 24425
31 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 24478
30 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 24492
29 Playing text to speech inside read function in asterisk admin 2017.08.28 24503
28 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 24518
27 Dialplan handler routines allow customization admin 2017.08.26 24562
26 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 24616
25 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 24676
24 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 24706
23 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 24733
22 asterisk dialplan 설명 admin 2017.08.16 24771
21 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 24789
20 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 25095
» Text to speech for asterisk using Google Translate admin 2017.08.24 25152
18 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 25189
17 Installing AsteriskNOW Official Distro admin 2015.05.05 25409
16 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 25630
15 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 25843
14 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 25880
13 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 25994
12 List of 5 Open Source Call Center Software Programs admin 2017.08.31 26539
11 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 26567
10 Asterisk Quick Start Guide admin 2015.05.05 26752
9 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 27127
8 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 27603
7 A2Billing v2 Install Guide admin 2015.05.05 27746
6 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 28527
5 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 28927
4 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 30186
3 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 31371
2 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 33295
1 Make Your Own IVR with Asterisk admin 2017.08.26 37912