Asterisk-如何“耳语”使用 ChanSpy() 或其他替代方法播放音乐?

发布于 2024-12-14 18:37:39 字数 1435 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

末が日狂欢 2024-12-21 18:37:40

最佳方法的问题取决于您到底想做什么。您仅指定要向单个参与者耳语音乐/消息。因此将他们从会议中删除只会变得更加复杂。至于如何操作,这里是近似代码:

Dialplan:

[whisper-to-participant]
exten => s,1,Answer()
exten => s,n,ChanSpy(<Participants channel>,w)

Then originate a call (在本例中使用呼叫文件,尽管 AMI 可以正常工作) 为:

Channel: Local/s@whisper-to-participant
Application: Playback
Data: <prompt/music file>

虽然我的语法在这里可能不完美,但这是基本思想如何将数据流式传输/悄悄传送给单个参与者。

The question of best approach depends on what exactly your trying to do. You only specified that you want to whisper music/message to a single participent. Removing them from the conference for that will only be MORE complicated. As far as how to, here is approximate code:

Dialplan:

[whisper-to-participant]
exten => s,1,Answer()
exten => s,n,ChanSpy(<Participants channel>,w)

Then originate a call (in this example were using a call file, although AMI would work just fine) as:

Channel: Local/s@whisper-to-participant
Application: Playback
Data: <prompt/music file>

While my syntax may not be perfect here, this is the basic idea of how to stream/whisper data to a single participant.

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