星号 +媒体服务器集成?

发布于 2024-12-10 21:18:36 字数 187 浏览 0 评论 0原文

如何将 Asterisk(VOIP - IP-PBX) 集成到某些媒体服务器或流媒体服务器?

Asterisk + Darwin 流媒体服务器、Asterisk + Live555 媒体服务器、Asterisk + Ice Cast? Asterisk + 任何其他服务器 ? 请推荐一些媒体服务器以及如何将其与 Asterisk 一起使用?

How do i integrate Asterisk(VOIP - IP-PBX) to some media server or streaming server?

Asterisk + Darwin Streaming Server,Asterisk + Live555 media server,Asterisk + Ice Cast?
Asterisk + any other server
?
Please suggest some media servers and how to use that with Asterisk?

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

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

发布评论

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

评论(2

你的他你的她 2024-12-17 21:18:36

Asterisk 1.4 支持 Icecast http://www.voip-info.org /wiki/view/Asterisk+cmd+Ices
另外一个有趣的模块是 jackaudio,您可以将输入和输出数据连接到可想象数量的终端流。

Asterisk 1.4 has support for Icecast http://www.voip-info.org/wiki/view/Asterisk+cmd+Ices .
Also an interesting module is jackaudio, you can hook input and output data to imaginable number of end-streams.

佞臣 2024-12-17 21:18:36

如果您想从 Ice Cast 中提取音频,您可以使用带有 bashscript 的 madplay,如下所示。

musiconhold.conf 中

[moh_from_icecase]
mode=custom
application=/etc/asterisk/my_moh.sh

在/etc/asterisk/my_moh.sh 中的

#!/bin/bash
wget -q -T 120 -O - 'http://example.org:80/my_stream' | /usr/local/bin/madplay -Q -o raw:- --mono -R 8000 -a -10 -

If you are looking to pull audio from ice cast you can use a madplay with a bashscript like this.

in musiconhold.conf

[moh_from_icecase]
mode=custom
application=/etc/asterisk/my_moh.sh

in /etc/asterisk/my_moh.sh

#!/bin/bash
wget -q -T 120 -O - 'http://example.org:80/my_stream' | /usr/local/bin/madplay -Q -o raw:- --mono -R 8000 -a -10 -
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文