FreeSWITCH mod_conference 的按键会控

又是一篇命题作文

mod_conference 官方文档:

https://developer.signalwire.com/freeswitch/FreeSWITCH-Explained/Modules/mod_conference_3965534/

英文不好的可以看中文:

http://www.freeswitch.org.cn/books/references/1.7-mod_conference.html

我主要参考官方文档,文档写的非常清楚

本人并没有特别要补充的

这里仅仅普及下常识

首先,member 分二种,一种是主持人(moderator),本人习惯配置二个按键;另外一种是普通参会者,本人习惯配置单个按键。

下面是普通参会者的按键配置:

<group name="default">

<control action="mute" digits="0"/>

<control action="deaf mute" digits="*"/>

<control action="energy up" digits="9"/>

<control action="energy equ" digits="8"/>

<control action="energy dn" digits="7"/>

<control action="vol talk up" digits="3"/>

<control action="vol talk zero" digits="2"/>

<control action="vol talk dn" digits="1"/>

<control action="vol listen up" digits="6"/>

<control action="vol listen zero" digits="5"/>

<control action="vol listen dn" digits="4"/>

<control action="execute_application" digits="#" data="execute_extension call_hotline XML cnf"/>

</group>

其中,按 # 字键之后执行 dialplan,等于是热线求助,写一段路由就可以支持

下面是主持人的按键配置:

<group name="moderator">

<control action="execute_application" digits="*1" data="execute_extension ASK_FOR_NUMBER__callout_joinconference_moderator XML cnf"/>

<control action="mute" digits="66"/>

<control action="mute on" digits="*6"/>

<control action="mute off" digits="#6"/>

<control action="execute_application" digits="*9" data="playback moderator_help.wav"/> <!--普通参会者的语音提示-->

<control action="execute_application" digits="*#" data="execute_extension ANNOUNCE_CONF_COUNT_PRIVATE XML cnf"/>

</group>

到底怎么实现,官方文档其实讲的很清楚的,仔细找就可以找到

execute conference 123 跟 execute conference 123@default 是一样的,艾特右边的是会议的 profile

比如 execute conference 123@wideband,则需要配置 wideband 这个 profile

profile 配置部分有三个配置项要留意:

  1. <param name="caller-controls" value="default"/> 普通参会者的按键控制

  2. <param name="moderator-controls" value="moderator"/> 支持人的按键控制

  3. <param name="ivr-dtmf-timeout" value="2000"/> 2 个 dtmf 之间的间隔时间

那么什么是主持人(moderator)呢?

很简单

execute conference 123@default+flags{moderator}

相关推荐
liulilittle12 小时前
BBR 状态机
网络·通信
无名3872 天前
再评 https://github.com/sipwise/rtpengine/issues/415
通信
xixixi777773 天前
确定性网络:从技术原理到产业落地,2026 年开启广域确定性新时代
人工智能·安全·互联网·北斗·通信·确定性网络·局域
xixixi777773 天前
算力网络双轮驱动:800G 光模块价格再降、1.6T 商用提速,AI-eSIM 用户破亿重构身份生态
网络·人工智能·ai·大模型·光模块·通信·运营商
liulilittle4 天前
TCP UCP 卡尔曼滤波器
网络·网络协议·tcp/ip·通信
liulilittle12 天前
TCP UCP v1.0 拥塞控制算法(Linux Kernel CC-A)
linux·网络·网络协议·tcp/ip·c·通信·拥塞控制
山木嵌入式14 天前
同步通信与异步通信(UART/USART):定义、原理、场景全解析
串口·嵌入式·uart·通信
小贺儿开发14 天前
Unity3D 串口通信上位机联调系统
unity·串口·协议·数据·通信·传输·互动
辰尘_星启14 天前
【Linux】Python Socket编程指南
linux·python·socket·系统·通信
无名38715 天前
rtpengine.conf 设置 table=0
通信