有没有可能的方法使钩子闪存到任何扩展通过软件?
我喜欢按照此步骤进行电话会议。
- 2222 拨打电话至 3333(电话)
- 3333 接听电话(电话)
- 模拟按闪光按钮至 2222 认为 AMI/? (软件)
- 通过 AMI 发起呼叫 4444 (软件)
- 4444 接听电话 (电话)
- 模拟按下闪存按钮到 2222 认为 AMI/?再次(软件)
- 222 333 4444 在同一频道中互相通话(电话)
我知道 AMI 没有确切的功能来使挂机闪烁。 (一些技巧?)
是否有任何建议通过软件(可能是 AMI 或其他任何软件)完成步骤 3 和 6。
资源:
AMI = Asterisk Manager Interface http://en.wikipedia.org/wiki/Hook_flash
I like to make conference call following this step.
- 2222 make call to 3333 (phone)
- 3333 receive phone call (phone)
- simulate push flash button to 2222 thought AMI/? (software)
- originate call to 4444 throught AMI (software)
- 4444 receive phone call (phone)
- simulate push flash button to 2222 thought AMI/? again (software)
- 222 333 4444 speaking to each other in the same channel (phone)
I know that AMI doesn't have exactly function to make hook flash. (some trick?)
Is there any suggestion to complete step 3 and 6 through software it may be AMI or anything else.
Resource:
AMI = Asterisk Manager Interface http://en.wikipedia.org/wiki/Hook_flash
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用 originate 命令并使用“application”参数发起呼叫来连接两方。在控制台中,如下所示:
发起 SIP/2222 应用程序 拨打 SIP/3333
这将发起对分机 2222 的呼叫,当应答时,将拨打对分机 3333 的呼叫。
要拨打第三个电话,您可以在拨号计划中添加类似以下内容:
[thirdcall]
扩展=> s,1,拨号(SIP/4444)
扩展=> s,2,NoOp
并将 originate 命令更改为如下所示:
originate SIP/2222 application Dial SIP/3333,G(thirdcall^s^1)
这将呼叫分机。 2222,当呼叫被应答时,将呼叫分机。 3333。然后当呼叫 3333 被应答时,它会发送分机。 3333 到拨号方案上的thirdcall,s,1,这是到分机 4444 的拨号命令(并且它还会在应答时将分机 4444 发送到 s,2,这是一个 NoOp)。
尝试一下,让我们知道这三个呼叫是否已桥接并且各方可以相互通话。
就我个人而言,我认为打电话给所有三方并将他们送到会议室会更容易......
You can connect two parties by originating a call with the originate command, using the "application" parameter. From the console it's like this:
originate SIP/2222 application Dial SIP/3333
That will originate a call to extension 2222 and when it's answered, a call to extension 3333 will be placed.
To place the third call, you can have something like this in your dialplan:
[thirdcall]
exten => s,1,Dial(SIP/4444)
exten => s,2,NoOp
And change the originate command to something like this:
originate SIP/2222 application Dial SIP/3333,G(thirdcall^s^1)
This will place a call to ext. 2222, and when the call is answered, a call is placed to ext. 3333. Then when the call to 3333 is answered, it will send ext. 3333 to to thirdcall,s,1 on the dialplan, which is a dial command to extension 4444 (and it also sends extension 4444 to s,2 which is a NoOp, upon answer).
Try it and let us know if the three calls are bridged and all parties can talk among themselves.
Personally I think it would be easier to call all three parties and send them to a conference room...