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}

相关推荐
我又何必慨叹3 天前
NetMQ里Push-Pull模式,消息隔一收一问题小记
c#·通信·netmq·push-pull·pull端消息丢失
董可伦4 天前
Netty 入门学习
rpc·spark·netty·通信
网易智企8 天前
游戏社交趋势下,游戏语音再升级!
人工智能·游戏·音视频·语音识别·实时音视频·信息与通信·通信
SONG_YIH22 天前
5G -- 发展与演进
5g·通信
无名3871 个月前
简单记录一下 Debian12 安装 FusionPBX 要点
通信
汽车电子工具智慧库1 个月前
车载以太网新挑战:CAN XL总线技术解析!
网络协议·汽车·autosar·通信
bobuddy1 个月前
MCPTT 与BTC
通信
WPG大大通1 个月前
关于音频 DSP 的接口种类以及其应用场景介绍
经验分享·音频·dsp开发·通信·车载·大大通
cyt涛3 个月前
WebSocket—双向实时通信
网络·websocket·网络协议·实时·通信·双向·持久性