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
|
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 2009 - 2015, Lefteris Zafiris
*
* Lefteris Zafiris <zaf@fastmail.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* 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.
*/
/*! \file
*
* \brief Say text to the user, using Flite TTS engine.
*
* \author\verbatim Lefteris Zafiris <zaf@fastmail.com> \endverbatim
*
* \extref Flite text to speech Synthesis System - http://www.speech.cs.cmu.edu/flite/
*
* \ingroup applications
*/
/*** MODULEINFO
<defaultenabled>no</defaultenabled>
***/
#include "asterisk.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdlib.h>
#include <flite/flite.h>
#include "asterisk/app.h"
#include "asterisk/channel.h"
#include "asterisk/module.h"
#include "asterisk/config.h"
#include "asterisk/utils.h"
#define AST_MODULE "Flite"
#define FLITE_CONFIG "flite.conf"
#define MAXLEN 2048
#define DEF_RATE 8000
#define DEF_VOICE "kal"
#define DEF_DIR "/tmp"
cst_voice *register_cmu_us_awb(void);
void unregister_cmu_us_awb(cst_voice *v);
cst_voice *register_cmu_us_kal(void);
void unregister_cmu_us_kal(cst_voice *v);
cst_voice *register_cmu_us_kal16(void);
void unregister_cmu_us_kal16(cst_voice *v);
cst_voice *register_cmu_us_rms(void);
void unregister_cmu_us_rms(cst_voice *v);
cst_voice *register_cmu_us_slt(void);
void unregister_cmu_us_slt(cst_voice *v);
static const char *app = "Flite";
static const char *synopsis = "Say text to the user, using Flite TTS engine";
static const char *descrip =
" Flite(text[,intkeys]): This will invoke the Flite TTS engine, send a text string,\n"
"get back the resulting waveform and play it to the user, allowing any given interrupt\n"
"keys to immediately terminate and return the value, or 'any' to allow any number back.\n";
static int target_sample_rate;
static int usecache;
static const char *cachedir;
static const char *voice_name;
static struct ast_config *cfg;
static struct ast_flags config_flags = { 0 };
static int read_config(const char *flite_conf)
{
const char *temp;
/* set default values */
target_sample_rate = DEF_RATE;
usecache = 0;
cachedir = DEF_DIR;
voice_name = DEF_VOICE;
cfg = ast_config_load(flite_conf, config_flags);
if (!cfg || cfg == CONFIG_STATUS_FILEINVALID) {
ast_log(LOG_WARNING,
"Flite: Unable to read config file %s. Using default settings\n", flite_conf);
} else {
if ((temp = ast_variable_retrieve(cfg, "general", "usecache")))
usecache = ast_true(temp);
if ((temp = ast_variable_retrieve(cfg, "general", "cachedir")))
cachedir = temp;
if ((temp = ast_variable_retrieve(cfg, "general", "voice")))
voice_name = temp;
if ((temp = ast_variable_retrieve(cfg, "general", "samplerate"))) {
target_sample_rate = (int) strtol(temp, NULL, 10);
if (errno == ERANGE) {
ast_log(LOG_WARNING, "Flite: Error reading samplerate from config file\n");
target_sample_rate = DEF_RATE;
}
}
}
if (target_sample_rate != 8000 && target_sample_rate != 16000) {
ast_log(LOG_WARNING, "Flite: Unsupported sample rate: %d. Falling back to %d\n",
target_sample_rate, DEF_RATE);
target_sample_rate = DEF_RATE;
}
return 0;
}
static int flite_exec(struct ast_channel *chan, const char *data)
{
int res = 0;
int raw_fd;
int writecache = 0;
FILE *fl;
char *mydata, *format;
char cachefile[MAXLEN];
char tmp_name[18] = "/tmp/flite_XXXXXX";
char raw_tmp_name[24];
cst_wave *raw_data;
cst_voice *voice;
AST_DECLARE_APP_ARGS(args,
AST_APP_ARG(text);
AST_APP_ARG(interrupt);
);
if (ast_strlen_zero(data)) {
ast_log(LOG_ERROR, "Flite requires an argument (text)\n");
return -1;
}
mydata = ast_strdupa(data);
AST_STANDARD_APP_ARGS(args, mydata);
if (args.interrupt && !strcasecmp(args.interrupt, "any"))
args.interrupt = AST_DIGIT_ANY;
args.text = ast_strip_quoted(args.text, "\"", "\"");
if (ast_strlen_zero(args.text)) {
ast_log(LOG_WARNING, "Flite: No text passed for synthesis.\n");
return res;
}
ast_debug(1, "Flite:\nText passed: %s\nInterrupt key(s): %s\nVoice: %s\nRate: %d\n",
args.text, args.interrupt, voice_name, target_sample_rate);
/*Cache mechanism */
if (usecache) {
char MD5_name[33];
ast_md5_hash(MD5_name, args.text);
if (strlen(cachedir) + strlen(MD5_name) + 6 <= MAXLEN) {
ast_debug(1, "Flite: Activating cache mechanism...\n");
snprintf(cachefile, sizeof(cachefile), "%s/%s", cachedir, MD5_name);
if (ast_fileexists(cachefile, NULL, NULL) <= 0) {
ast_debug(1, "Flite: Cache file does not yet exist.\n");
writecache = 1;
} else {
ast_debug(1, "Flite: Cache file exists.\n");
if (ast_channel_state(chan) != AST_STATE_UP)
ast_answer(chan);
res = ast_streamfile(chan, cachefile, ast_channel_language(chan));
if (res) {
ast_log(LOG_ERROR, "Flite: ast_streamfile from cache failed on %s\n",
ast_channel_name(chan));
} else {
res = ast_waitstream(chan, args.interrupt);
ast_stopstream(chan);
return res;
}
}
}
}
/* Create temp filenames */
if ((raw_fd = mkstemp(tmp_name)) == -1) {
ast_log(LOG_ERROR, "Flite: Failed to create audio file.\n");
return -1;
}
if ((fl = fdopen(raw_fd, "w+")) == NULL) {
ast_log(LOG_ERROR, "Flite: Failed to open audio file '%s'\n", tmp_name);
return -1;
}
/* Invoke Flite */
flite_init();
if (strcmp(voice_name, "kal") == 0 && target_sample_rate == 8000)
voice = register_cmu_us_kal();
else if (strcmp(voice_name, "kal") == 0 && target_sample_rate == 16000)
voice = register_cmu_us_kal16();
else if (strcmp(voice_name, "awb") == 0)
voice = register_cmu_us_awb();
else if (strcmp(voice_name, "rms") == 0)
voice = register_cmu_us_rms();
else if (strcmp(voice_name, "slt") == 0)
voice = register_cmu_us_slt();
else {
ast_log(LOG_WARNING, "Flite: Unsupported voice %s. Using default male voice.\n",
voice_name);
voice = register_cmu_us_kal();
}
raw_data = flite_text_to_wave(args.text, voice);
/* Resample if needed */
if (raw_data->sample_rate != target_sample_rate)
cst_wave_resample(raw_data, target_sample_rate);
res = cst_wave_save_raw_fd(raw_data, fl);
fclose(fl);
delete_wave(raw_data);
if (strcmp(voice_name, "awb") == 0)
unregister_cmu_us_awb(voice);
else if (strcmp(voice_name, "rms") == 0)
unregister_cmu_us_rms(voice);
else if (strcmp(voice_name, "slt") == 0)
unregister_cmu_us_slt(voice);
else if (strcmp(voice_name, "kal") == 0 && target_sample_rate == 16000)
unregister_cmu_us_kal16(voice);
else
unregister_cmu_us_kal(voice);
if (res) {
ast_log(LOG_ERROR, "Flite: failed to write file %s\n", raw_tmp_name);
return res;
}
if (target_sample_rate == 16000) {
format = "sln16";
} else {
format = "sln";
}
snprintf(raw_tmp_name, sizeof(raw_tmp_name), "%s.%s", tmp_name, format);
rename(tmp_name, raw_tmp_name);
if (ast_channel_state(chan) != AST_STATE_UP)
ast_answer(chan);
res = ast_streamfile(chan, tmp_name, ast_channel_language(chan));
if (res) {
ast_log(LOG_ERROR, "Flite: ast_streamfile failed on %s\n", ast_channel_name(chan));
} else {
res = ast_waitstream(chan, args.interrupt);
ast_stopstream(chan);
}
/* Save file to cache if set */
if (writecache) {
ast_debug(1, "Flite: Saving cache file %s\n", cachefile);
ast_filerename(tmp_name, cachefile, format);
} else {
unlink(raw_tmp_name);
}
return res;
}
static int reload_module(void)
{
ast_config_destroy(cfg);
read_config(FLITE_CONFIG);
return 0;
}
static int unload_module(void)
{
ast_config_destroy(cfg);
return ast_unregister_application(app);
}
static int load_module(void)
{
read_config(FLITE_CONFIG);
return ast_register_application(app, flite_exec, synopsis, descrip) ?
AST_MODULE_LOAD_DECLINE : AST_MODULE_LOAD_SUCCESS;
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Flite TTS Interface",
.load = load_module,
.unload = unload_module,
.reload = reload_module,
);
|