有没有可能的方法使钩子闪存到任何扩展通过软件?

发布于 2024-08-12 00:24:44 字数 443 浏览 10 评论 0原文

我喜欢按照此步骤进行电话会议。

  1. 2222 拨打电话至 3333(电话)
  2. 3333 接听电话(电话)
  3. 模拟按闪光按钮至 2222 认为 AMI/? (软件)
  4. 通过 AMI 发起呼叫 4444 (软件)
  5. 4444 接听电话 (电话)
  6. 模拟按下闪存按钮到 2222 认为 AMI/?再次(软件)
  7. 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.

  1. 2222 make call to 3333 (phone)
  2. 3333 receive phone call (phone)
  3. simulate push flash button to 2222 thought AMI/? (software)
  4. originate call to 4444 throught AMI (software)
  5. 4444 receive phone call (phone)
  6. simulate push flash button to 2222 thought AMI/? again (software)
  7. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明媚如初 2024-08-19 00:24:44

您可以通过使用 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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文