简体   繁体   中英

Set waiting tone for asterisk agi function processing

I am using asterisk with normal PHP AGI following this link the problem is that my PHP AGI takes 5 seconds to execute .I just want to set some waiting tone for the user to wait until the AGI is been processing. On the same link I found something:

set music: Enable/Disable Music on hold generator, example "SET MUSIC ON default

but I don't know exactly how to use I mean what would be the exact syntax and where do I put it.

I have tried adding

same => n,Set(CHANNEL(musicclass)=default)

but it didn't work.

If you use phpagi, you have do something like this

$agi->set_music(true,"myholdclass")
...
$agi->set_music(false)

http://phpagi.sourceforge.net/phpagi2/docs/phpAGI/AGI.html#methodset_music

Sure you need first describe myholdclass in /etc/asterisk/musiconhold.conf

You put some sound file into your sound directory:

/var/lib/asterisk/mysoundFile

Then call the playback function:

Playback(mysoundFile)

For more information: http://www.voip-info.org/wiki/view/Asterisk+cmd+Playback

请查看Playtones命令。

exten => s,2,Playtones(dial)

I have an easier solution for your problem.

You use Asterisk AGI for it, without needing to create an AGI script (I do not like the AGI mechanism. I have invented a framework that is more powerful, easier and flexible and allows me to do crazy stuff with Asterisk without ever touching the Dial plan or any other config file).

For you problem, just do the following;

  1. create a symbolic link for the '/bin/echo' application in the agi directory by:

     ln -s /bin/echo /var/lib/asterisk/agi-bin/echo 
  2. from your dial plan, start music on hold by calling exten => s,n,AGI( echo, SET MUSIC ON)

  3. do your action
  4. stop the music on hold by calling exten => s,n,AGI( echo, SET MUSIC OFF)
  5. transfer or do other things

This is the easiest way without needing to create AGI pages.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM