修改默认参数与ZLM统一

pull/1/head
panll 2020-10-17 16:41:40 +08:00
parent b559b73be4
commit 04af6de363
2 changed files with 8 additions and 8 deletions

View File

@ -26,7 +26,7 @@ public class ZLMUtils {
Map<String, Object> param = new HashMap<>(); Map<String, Object> param = new HashMap<>();
int newPort = getPortFromUdpPortRange(); int newPort = getPortFromUdpPortRange();
param.put("port", newPort); param.put("port", newPort);
param.put("enable_tcp", 0); param.put("enable_tcp", 1);
param.put("stream_id", streamId); param.put("stream_id", streamId);
JSONObject jsonObject = zlmresTfulUtils.openRtpServer(param); JSONObject jsonObject = zlmresTfulUtils.openRtpServer(param);
if (jsonObject.getInteger("code") == 0) { if (jsonObject.getInteger("code") == 0) {

View File

@ -7,17 +7,17 @@ spring:
communicate: http communicate: http
redis: redis:
# Redis服务器IP # Redis服务器IP
host: 192.168.1.141 host: 127.0.0.1
#端口号 #端口号
port: 6379 port: 6379
database: 6 database: 6
#访问密码,若你的redis服务器没有设置密码就不需要用密码去连接 #访问密码,若你的redis服务器没有设置密码就不需要用密码去连接
password: 4767cb971b40a1300fa09b7f87b09d1c password:
#超时时间 #超时时间
timeout: 10000 timeout: 10000
datasource: datasource:
name: eiot name: eiot
url: jdbc:mysql://192.168.1.141:3306/eiot?useUnicode=true&characterEncoding=UTF8&rewriteBatchedStatements=true url: jdbc:mysql://127.0.0.1:3306/eiot?useUnicode=true&characterEncoding=UTF8&rewriteBatchedStatements=true
username: username:
password: password:
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
@ -25,7 +25,7 @@ spring:
server: server:
port: 18080 port: 18080
sip: sip:
ip: 192.168.1.20 ip: 192.168.1.44
port: 5060 port: 5060
# 根据国标6.1.2中规定domain宜采用ID统一编码的前十位编码。国标附录D中定义前8位为中心编码由省级、市级、区级、基层编号组成参照GB/T 2260-2007 # 根据国标6.1.2中规定domain宜采用ID统一编码的前十位编码。国标附录D中定义前8位为中心编码由省级、市级、区级、基层编号组成参照GB/T 2260-2007
# 后两位为行业编码定义参照附录D.3 # 后两位为行业编码定义参照附录D.3
@ -40,12 +40,12 @@ auth: #32位小写md5加密默认密码为admin
password: 21232f297a57a5a743894a0e4a801fc3 password: 21232f297a57a5a743894a0e4a801fc3
media: #zlm服务器的ip与http端口, 重点: 这是http端口 media: #zlm服务器的ip与http端口, 重点: 这是http端口
ip: 192.168.1.20 ip: 192.168.1.44
port: 9080 port: 80
secret: 035c73f7-bb6b-4889-a715-d9eb2d1925cc secret: 035c73f7-bb6b-4889-a715-d9eb2d1925cc
streamNoneReaderDelayMS: 1800000 # 无人观看多久自动关闭流 streamNoneReaderDelayMS: 1800000 # 无人观看多久自动关闭流
rtp: # 启用udp多端口模式 rtp: # 启用udp多端口模式
enable: false enable: true
udpPortRange: 30000,300500 # 端口范围 udpPortRange: 30000,300500 # 端口范围