Displaying 3 results from an estimated 3 matches for "goto_exten".
2009 Aug 26
1
app_swift issue
...his line ""//#define AST_MODULE "app_swift""
but in vain .... Please help
static int load_module(void)
{
int res;
const char *t = NULL;
struct ast_config *cfg;
struct ast_flags config_flags = { 0 };
// Set defaults
cfg_buffer_size = 65535;
cfg_goto_exten = 0;
strncpy(cfg_voice, "David-8kHz", sizeof(cfg_voice));
res = ast_register_application(app, engine, synopsis, descrip);
cfg = ast_config_load(SWIFT_CONFIG_FILE, config_flags);
if (cfg) {
if ((t = ast_variable_retrieve(cfg, "general", "buffer_size...
2009 Aug 26
4
Fw: app_swift issue
....c
i commented this line ""//#define AST_MODULE "app_swift""
but in vain .... Please help
static int load_module(void)
{
int res;
const char *t = NULL;
struct ast_config *cfg;
struct ast_flags config_flags = { 0 };
// Set defaults
cfg_buffer_size = 65535;
cfg_goto_exten = 0;
strncpy(cfg_voice, "David-8kHz", sizeof(cfg_voice));
res = ast_register_application(app, engine, synopsis, descrip);
cfg = ast_config_load(SWIFT_CONFIG_FILE, config_flags);
if (cfg) {
if ((t = ast_variable_retrieve(cfg, "general", "buffer_size"))) {
cfg_bu...
2007 Sep 18
1
Asterisk 1.4 and Cepstral
...or are
there any pointers as to what I should be looking for in a config file.
Thanks.
extensions.conf:
exten => 403,1,Answer()
exten => 403,2,Swift(Test)
exten => 403,3,Swift(David^Test Test)
exten => 403,4,Swift(This sounds bloody aweful)
swift.conf:
[general]
buffer_size=65535
goto_exten=no
voice=David-8kHz
VOIP*CLI> show application Swift
VOIP*CLI>
-= Info about application 'Swift' =-
[Synopsis]
Speak text through Swift text-to-speech engine.
[Description]
Swift([<Voice>^]text) Speaks the given text through the Swift TTS engine.
Returns -1 on hangup o...