将 .so 与星号电话集成

发布于 2024-12-11 11:11:05 字数 508 浏览 0 评论 0原文

我有一个在 Asterisk 电话服务器上运行的应用程序,它可以更改来电的语音数据包。为此,我按照以下步骤操作:
1. 我构建了应用程序的 so(用 C 编码)。
2. 将应用程序加载到 asterisk 上。
3. 通过 dialplan reload 重新加载 dialplan
4. 该函数通过其名称 SampleFunc
在星号中注册 5. 我从拨号方案中调用该函数,如下所示:
扩展=> 0,n,SampleFunc()

理想情况下,我希望 .so 只要调用就可以运行。现在,它只是在呼叫连接后立即进入该函数,然后退出并继续执行拨号计划的其余部分。我的问题:

  1. 如何在通话时让它循环?
  2. 还有什么我可能错过的吗?

PS:这可能是一些细节。由于无法发布实际代码,如果需要更多详细信息,请告诉我。

I have an application running on an Asterisk telephony server that alters the voice packets of an incoming call. To do this, I have followed the steps:
1. I built an so of the application (coded in C).
2. Loaded the application onto asterisk.
3. Reloaded the dialplan via dialplan reload
4. The function is registered in asterisk by its name SampleFunc
5. I am calling the function from within the dialplan like so:
exten => 0,n,SampleFunc()

Ideally, I would like the .so to function as long as the call is on. Right now it just goes into the function as soon as the call connects and then gets out and proceeds with the rest of the dialplan. My question:

  1. How do I get it to loop while the call is on?
  2. Is there anything else that I may have missed?

P.S: This may be few details to go with. Short of posting the actual code, please let me know in case more details are needed.

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

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

发布评论

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

评论(1

深居我梦 2024-12-18 11:11:05

如果您需要在对话和拨号方案继续时更改音频,您可以通过修补正在使用的星号音频编解码器来实现它。

If what you need is change the audio while the conversation, and dialplan, goes on you can achieve it patching the asterisk audio codec in use.

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