Displaying 2 results from an estimated 2 matches for "sounds_path".
2013 Nov 27
3
issue with speech in IVR
hello list
i have an IVR menu in asterisk 1.4
like below
exten => 600,1,Ringing()
exten => 600,n,Wait(2)
exten => 600,n,Goto(home,s,1)
[home]
exten => s,1,SetGlobalVar(sounds_path=/var/lib/asterisk/sounds/)
exten => s,n,Background(${sounds_path}music1)
exten => s,n,Background(${sounds_path}music2)
exten => s,n,Background(${sounds_path}music3)
exten => s,n,WaitExten(5)
exten => s,n,goto(home,s,1)
exten => i,1,Playback(${sounds_path}error)
exten => i,n,Wai...
2013 Jul 25
1
asterisk and IVR
Hello list,
i need your help about the IVR please
i have asterisk 1.4 installed and i configure an IVR like below
exten => 529,1,Ringing()
exten => 529,n,Wait(4)
exten => 529,n,Goto(home,s,1)
[home]
exten => s,1,SetGlobalVar(sounds_path=/var/lib/asterisk/sounds/)
exten => s,n,Background(${sounds_path}welcome)
exten => s,n,WaitExten(5)
exten => s,n,goto(home,s,1)
exten => i,1,Playback(${sounds_path}erreur-saisie)
exten => i,2,goto(home,s,1)
exten => t,1,Goto(home,s,1)
exten => 1,1,Goto(call,s,1)
[call]
exte...