【发布时间】:2018-03-02 01:46:07
【问题描述】:
当有人在 Asterisk 15.2.2 中挂断电话时,我正在尝试播放声音,但是挂断后会听到 2 声哔哔声,并且连接中断而没有播放音频文件。这是我当前的拨号方案:
[macro-callwithhelloworld]
exten => s,1,Wait(1)
same => n,Playback(hello-world)
same => n,Dial(${ARG1},20)
same => n,Hangup()
same => n,Answer()
same => n,Playback(hello-world)
[from-internal]
exten=>6001,1,Macro(callwithhelloworld,SIP/demo)
我怎样才能让它在有人挂断时播放“hello-world”?
【问题讨论】:
标签: asterisk