forked from zaf/asterisk-googletts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
googletts-tiny.agi
executable file
·306 lines (272 loc) · 8.78 KB
/
googletts-tiny.agi
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
#!/usr/bin/env perl
#
# AGI script that uses Google's translate text to speech engine.
#
# Copyright (C) 2011 - 2015, Lefteris Zafiris <[email protected]>
#
# This program is free software, distributed under the terms of
# the GNU General Public License Version 2. See the COPYING file
# at the top of the source tree.
#
# -----
# 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, sample rate, caching and cache dir
# can be set up by altering the following variables:
# Default langeuage: $lang
# Sample rate: $samplerate
# Speed factor: $speed
# Chace: $usecache
# Chache directory: $cachedir
# SoX Version: $sox_ver
#
use warnings;
use strict;
use Encode qw(decode encode);
use File::Temp qw(tempfile);
use File::Copy qw(move);
use File::Path qw(mkpath);
use Digest::MD5 qw(md5_hex);
use URI::Escape;
use HTTP::Tiny;
$| = 1;
# ----------------------------- #
# User defined parameters: #
# ----------------------------- #
# Default language #
my $lang = "en-US";
# Output speed factor #
my $speed = 1;
# Use of cache mechanism #
my $usecache = 1;
# Cache directory path #
my $cachedir = "/tmp";
# Output audio sample rate #
# Leave blank to auto-detect #
my $samplerate = "8000";
# SoX Version #
# Leave blank to auto-detect #
my $sox_ver = "14";
# Verbose debugging messages #
my $debug = 0;
# ----------------------------- #
my %AGI;
my @text;
my $fh;
my $tmpname;
my $fexten;
my $sox;
my $mpg123;
my $intkey = "";
my $tmpdir = "/tmp";
my $maxlen = 4096;
my $timeout = 10;
my $url = "https://translate.google.com/translate_tts";
# Store AGI input #
($AGI{arg_1}, $AGI{arg_2}, $AGI{arg_3}, $AGI{arg_4}) = @ARGV;
while (<STDIN>) {
chomp;
last if (!length);
$AGI{$1} = $2 if (/^agi_(\w+)\:\s+(.*)$/);
}
my $name = " -- $AGI{request}:";
# Sanitising input #
$AGI{arg_1} = decode('utf8', $AGI{arg_1});
for ($AGI{arg_1}) {
s/[\\|*~<>^\(\)\[\]\{\}[:cntrl:]]/ /g;
s/\s+/ /g;
s/^\s|\s$//g;
die "$name No text passed for synthesis.\n" if (!length);
# Split input to comply with google tts requirements #
$_ .= "." unless (/^.+[.,?!:;]$/);
@text = /.{1,150}[.,?!:;]|.{1,150}\s/g;
}
my $lines = @text;
# Setting language, interrupt keys and speed rate #
if (length($AGI{arg_2})) {
if ($AGI{arg_2} =~ /^[a-zA-Z]{2}(-[a-zA-Z]{2,6})?$/) {
$lang = $AGI{arg_2};
} else {
warn "$name Invalid language setting. Using default.\n";
}
}
if (length($AGI{arg_3})) {
$intkey = "0123456789#*" if ($AGI{arg_3} eq "any");
$intkey = $AGI{arg_3} if ($AGI{arg_3} =~ /^[0-9*#]+$/);
}
if (length($AGI{arg_4})) {
$speed = $AGI{arg_4} if ($AGI{arg_4} =~ /^\d+(\.\d+)?$/);
}
# Check cache path size: dir length + md5 + file extension #
if ($usecache && ((length($cachedir) + 32 + 6) < $maxlen)) {
mkpath("$cachedir") unless (-d "$cachedir");
} else {
warn "$name Cache path size exceeds limit. Disabling cache.\n";
$usecache = 0;
}
# Answer channel if not already answered #
print "CHANNEL STATUS\n";
my @result = checkresponse();
if ($result[0] == 4) {
print "ANSWER\n";
@result = checkresponse();
if ($result[0] != 0) {
die "$name Failed to answer channel.\n";
}
}
# Setting filename extension according to sample rate. #
if (!$samplerate) { ($fexten, $samplerate) = detect_format(); }
elsif ($samplerate == 12000) { $fexten = "sln12"; }
elsif ($samplerate == 16000) { $fexten = "sln16"; }
elsif ($samplerate == 32000) { $fexten = "sln32"; }
elsif ($samplerate == 44100) { $fexten = "sln44"; }
elsif ($samplerate == 48000) { $fexten = "sln48"; }
else { ($fexten, $samplerate) = ("sln", 8000); }
# Initialise User angent #
my $http = HTTP::Tiny->new(
agent => 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.107 Safari/537.36',
timeout => $timeout,
verify_SSL => 1,
);
for (my $i=0; $i < $lines; $i++) {
my $filename;
my $res;
my $line = encode('utf8', $text[$i]);
$line =~ s/^\s+|\s+$//g;
next if (length($line) == 0);
if ($debug) {
warn "$name Text passed for synthesis: $line\n",
"$name Language: $lang, Interrupt keys: $intkey, Sample rate: $samplerate\n",
"$name Speed: $speed, Caching: $usecache, Cache dir: $cachedir\n";
}
if ($usecache) {
$filename = md5_hex("$line.$lang.$speed");
# Stream file from cache if it exists #
if (-r "$cachedir/$filename.$fexten") {
warn "$name File already in cache.\n" if ($debug);
$res = playback("$cachedir/$filename", $intkey);
die if ($res < 0);
last if ($res > 0);
next;
}
}
$line = uri_escape($line);
warn "$name URL passed: $url?ie=UTF-8&q=$line&tl=$lang&total=$lines&idx=$i&client=t\n" if ($debug);
# Hnadle interrupts #
$SIG{'INT'} = \&int_handler;
$SIG{'HUP'} = \&int_handler;
($fh, $tmpname) = tempfile("ggl_XXXXXX", DIR => $tmpdir, UNLINK => 1);
my $headers = {
'Accept' => 'audio/webm,audio/ogg,audio/wav,audio/*;q=0.9,application/ogg;q=0.7,video/*;q=0.6,*/*;q=0.5',
'Referer' => 'https://translate.google.co.uk/',
'Accept-Language' => 'en-US,en;q=0.5',
};
my $response = $http->mirror("$url?ie=UTF-8&q=$line&tl=$lang&total=$lines&idx=$i&client=t", $tmpname, $headers);
die "$name Failed to fetch file.\n" unless ($response->{success});
# Detect required programs #
if (!$sox || !$mpg123) {
$sox = `/usr/bin/which sox`;
$mpg123 = `/usr/bin/which mpg123`;
# Abort if required programs not found. #
die "$name sox or mpg123 is missing. Aborting.\n" if (!$sox || !$mpg123);
chomp($sox, $mpg123);
}
if (!$sox_ver) {
$sox_ver = (system("$sox --version > /dev/null 2>&1") == 0) ? 14 : 12;
warn "$name Found sox version $sox_ver in: $sox, mpg123 in: $mpg123\n" if ($debug);
}
# Convert mp3 file to 16bit 8Khz or 16kHz mono raw #
system($mpg123, "-q", "-w", "$tmpname.wav", $tmpname) == 0
or die "$name $mpg123 failed: $?\n";
my @soxargs = get_sox_args("$tmpname.wav", "$tmpname.$fexten");
system(@soxargs) == 0 or die "$name $sox failed: $?\n";
unlink "$tmpname.wav";
# Playback and save file in cache #
$res = playback($tmpname, $intkey);
die if ($res < 0);
if ($usecache) {
warn "$name Saving file $filename to cache\n" if ($debug);
move("$tmpname.$fexten", "$cachedir/$filename.$fexten");
} else {
unlink "$tmpname.$fexten";
}
last if ($res > 0);
}
exit;
sub checkresponse {
my $input = <STDIN>;
my @values;
chomp $input;
if ($input =~ /^200 result=(-?\d+)\s?(.*)$/) {
warn "$name Command returned: $input\n" if ($debug);
@values = ("$1", "$2");
} else {
$input .= <STDIN> if ($input =~ /^520-Invalid/);
warn "$name Unexpected result: $input\n";
@values = (-1, -1);
}
return @values;
}
sub playback {
my ($file, $keys) = @_;
my @response;
print "STREAM FILE $file \"$keys\"\n";
@response = checkresponse();
if ($response[0] >= 32 && chr($response[0]) =~ /[\w*#]/) {
warn "$name Got digit ", chr($response[0]), "\n" if ($debug);
print "SET EXTENSION ", chr($response[0]), "\n";
checkresponse();
print "SET PRIORITY 1\n";
checkresponse();
} elsif ($response[0] == -1) {
warn "$name Failed to play $file.\n";
}
return $response[0];
}
sub detect_format {
# Detect the sound format used #
my @format;
print "GET FULL VARIABLE \${CHANNEL(audionativeformat)}\n";
my @reply = checkresponse();
for ($reply[1]) {
if (/(silk|sln)12/) { @format = ("sln12", 12000); }
elsif (/(speex|slin|silk)16|g722|siren7/) { @format = ("sln16", 16000); }
elsif (/(speex|slin|celt)32|siren14/) { @format = ("sln32", 32000); }
elsif (/(celt|slin)44/) { @format = ("sln44", 44100); }
elsif (/(celt|slin)48/) { @format = ("sln48", 48000); }
else { @format = ("sln", 8000); }
}
return @format;
}
sub get_sox_args {
# Set the appropiate sox cli arguments #
my ($source_file, $dest_file) = @_;
my @soxargs = ($sox, $source_file, "-q", "-r", $samplerate, "-t", "raw", $dest_file);
if ($speed != 1) {
if ($sox_ver >= 14) {
push(@soxargs, ("tempo", "-s", $speed));
} else {
push(@soxargs, ("stretch", 1/$speed, "80"));
}
}
return @soxargs;
}
sub int_handler {
die "$name Interrupt signal received, terminating...\n";
}
END {
if ($tmpname) {
warn "$name Cleaning temp files.\n" if ($debug);
unlink glob "$tmpname*";
}
}