freeswitch 推送rtmp_freeswitch使用mod_rtmp通过WebRTC进行音/视频通话以及mod_rtmp模块配置使用...

丁阳羽
2023-12-01

如下你会用到,你可以使用default

About

mod_rtmp是 FreeSWITCH 的RTMP(实时媒体协议)端点。Flash主要使用RTMP协议通过Internet传输音频,视频和数据。

Click here to expand Table of Contents

安装

FreeSWITCH最新的git已经包含了mod_rtmp源代码。在编译之前,编辑modules.conf。取消注释endpoints/ mod_rtmp并保存文件。像平常一样运行FreeSWITCH编译。

配置

RTMP配置文件,rtmp.conf.xml

请参阅 RTMP配置文件。

API

1、状态

要查看端点状态:

freeswitch> rtmp status

要查看配置文件的状态:

freeswitch> rtmp status profile

要查看个人资料上的会话:

freeswitch> rtmp status profile sessions

要查看个人资料上的注册:

freeswitch> rtmp status profile reg

# rtmp status profile default reg

Profiles

要开始,停止或重新启动配置文件:

freeswitch> rtmp profile start

freeswitch> rtmp profile stop

freeswitch> rtmp profile restart

重新扫描配置文件的配置:

freeswitch> rtmp profile rescan

Sessions

杀死session:

freeswitch> rtmp session kill

要登录或注销会话:

freeswitch> rtmp session login

freeswitch> rtmp session logout

联系

To get a dialstring to call a registered user (optionally with nickname):

rtmp_contact profile/user@domain[/[!]nickname]

This can be used to bridge a call to the user:

Latency

如果您在通过Flash接收流式音频时遇到延迟,请首先检查延迟是否通过Flash与浏览器和音频系统的交互而产生。例如,在某些使用PulseAudio的Linux发行版中,您可能会发现在桌面终端窗口中执行以下命令对于减少当前会话的延迟有很大的影响::

export PULSE_LATENCY_MSEC=20

/usr/bin/firefox "$@"

Flex Client

There is also a sample flex client that works with mod_rtmp. The source is currently located right under the /usr/src/freeswitch/clients/flex. You need to copy those files and put it under a web server directory. Modify the freeswitch.html file and modify the following section:

var flashvars = {

rtmp_url: 'rtmp://my.ip.address.here/phone'

};

replace my.ip.address.here to your freeswitch server IP running the mod_rtmp module. Now open your browser and load the freeswitch.html page to see the client in action.

RTMP配置文件

1、简介

mod_rtmp允许你监听多个配置文件。每个配置文件绑定到一个唯一的IP:端口组合(类似于 Sofia 配置文件)。每个配置文件可以配置不同的设置。

这允许您监听多个地址/端口上的呼叫,或者根据他们连接的配置文件为不同的用户提供不同的连接设置。

2、基本设置

绑定地址

这将设置地址和端口绑定并监听连接。它可以绑定到0.0.0.0(即所有地址)。

上下文

这设置拨号计划上下文来处理呼叫。

拨号方案

这设置拨号计划提供商使用,通常是XML。

AUTH-电话

这控制是否允许未经身份验证的呼叫。如果设置为true,则只能进行已认证的呼叫。

缓冲-LEN

miliseconds

这将控制将媒体缓冲到客户端的时间,以毫秒为单位。

CHUNKSIZE

这将设置出站RTMP块的最大大小。

 类似资料: