_____  

From: [email protected]
[mailto:[email protected]] On Behalf Of Davinder Kumar
Meen
Subject: Re: [asterisk-users] Asterisk not working with Festival

 

Can anyone help please on this?

<snip>
>[connect-to-me]
>exten => s,1,Answer
>Exten => s,n,SayDigits('1')
>exten => s,n,Festival(hello john)
>exten => s,n,Hangup
<snip>
When you call in from your mobile, you are using a DAHDI channel which
introduces a 3-7 second delay into the process, unless you have one of the
"blessed" phone companies that offers call supervision.  If you put a
wait(7) in front of SayDigits, you should hear the call "normally". 

This is what I would suggest

[connect-to-me]
exten => s,1,Answer

Exten => s,n,Gotoif($["${EXTEN}:0:3)" = "SIP"]?4:3

Exten => s,n,wait(7)
Exten => s,n,SayDigits('1')
exten => s,n,Festival(hello john)
exten => s,n,Hangup



 

-- 
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to