Displaying 1 result from an estimated 1 matches for "fesivalbg".
Did you mean:
festivalbg
2003 Jul 03
0
app_festival not cleaning up properly?
...you can get a lot more calls to Festival going.
Here is a minimal AGI that you can use to duplicate the bug (I am using
asterisk-perl 0.06)
#!/usr/bin/perl
use Asterisk::AGI;
my $AGI = new Asterisk::AGI;
my %input = $AGI->ReadParse();
$AGI->answer();
while ($tries < 100) {
# Use FesivalBG instead of Festival to make the problem easier
to see
# if you have applied my Festival patch.
my $retval = chr($AGI->exec('Festival', '"i"'));
print STDERR "$$: Festival returned: ($retval)\n";
my $input = chr($AGI->wait_for...