目录

Pbx临时保存wav录音格式文件说明

目录

pbx临时保存wav录音格式文件

用ass合成

1.在server.conf中[server]段内添加需要wav文件的账号:

1
thisAccountNeedWav=N00000000535,N00000001583

多个账号用,(英文逗号)隔开。

2.在server.conf中[server]段内添加wav保存的天数:

1
deleteWavs=3 

wav文件比较大,不建议保存太久。

3.reload 一下ass配置文件:

(echo “Login -u 用户名 -p 密码”;sleep 1;echo “reload” ;sleep 3)|telnet localhost 7877

4.新加nginx配置文件:

1
2
3
4
5
6
7
8
9
		location /inOutTempOfWav {
            root   /var/spool/asterisk/;
            index  index.html index.htm;
            ##以下limit配置必须定义limit参数,否则不予以配置##
            limit_rate_after 10M;
            limit_rate  800k;
            limit_conn monitor_down 10;
            limit_req zone=monitor_down_1 burst=20 nodelay;
        }

5.reload nginx配置文件:

1
/opt/nginx/sbin/nginx -s reload

/images/pbx-wav-01.png

配置完成后让前端运维或客户测试。