[Help?] Having problems with Festival in AGI / Perl

Hello again,

I’m having a problem hearing Festival from an AGI that I am writing in Perl. I think the script is ok as the debug log is appearing to have what I would expect: (I threw a Wait in there just to make sure it had enoght time)

AGI Rx << VERBOSE "*********************************************" 1 adsearch2.pl: ********************************************* AGI Tx >> 200 result=1 AGI Rx << EXEC Festival 'test to say' -- AGI Script Executing Application: (Festival) Options: ('test to say') AGI Tx >> 200 result=-1 AGI Rx << EXEC wait 2 -- AGI Script Executing Application: (wait) Options: (2) AGI Tx >> 200 result=0 AGI Rx << VERBOSE "*********************************************" 1 adsearch2.pl: *********************************************

as an FYI, everthying is semi-coloned (that’s now a verb!) in festival.conf and here is the Perl just in case.

$agi->verbose("*********************************************",1); $agi->verbose("un= $un",1); $agi->exec('Festival',"\'$un\'"); $agi->exec('wait','2'); $agi->verbose("*********************************************",1);

Thanks.