From f7a2d2a92d7e25780c91dd74ecf52e094b62ef4c Mon Sep 17 00:00:00 2001 From: panlinlin <648540858@qq.com> Date: 星期一, 26 四月 2021 11:37:54 +0800 Subject: [PATCH] 去除所有的system.print, 优化日志显示 --- src/main/java/com/genersoft/iot/vmp/conf/MediaServerConfig.java | 85 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 85 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/conf/MediaServerConfig.java b/src/main/java/com/genersoft/iot/vmp/conf/MediaServerConfig.java index 6b04f13..e9d158c 100644 --- a/src/main/java/com/genersoft/iot/vmp/conf/MediaServerConfig.java +++ b/src/main/java/com/genersoft/iot/vmp/conf/MediaServerConfig.java @@ -22,6 +22,9 @@ @JSONField(name = "general.enableVhost") private String generalEnableVhost; + @JSONField(name = "general.mediaServerId") + private String generalMediaServerId; + @JSONField(name = "general.flowThreshold") private String generalFlowThreshold; @@ -30,6 +33,12 @@ @JSONField(name = "general.streamNoneReaderDelayMS") private String generalStreamNoneReaderDelayMS; + + private String localIP; + + private String wanIp; + + private long updateTime; @JSONField(name = "hls.fileBufSize") private String hlsFileBufSize; @@ -163,6 +172,18 @@ @JSONField(name = "rtp.videoMtuSize") private String rtpVideoMtuSize; + @JSONField(name = "rtp_proxy.checkSource") + private String rtpProxyCheckSource; + + @JSONField(name = "rtp_proxy.dumpDir") + private String rtpProxyDumpDir; + + @JSONField(name = "rtp_proxy.port") + private String rtpProxyPort; + + @JSONField(name = "rtp_proxy.timeoutSec") + private String rtpProxyTimeoutSec; + @JSONField(name = "rtsp.authBasic") private String rtspAuthBasic; @@ -255,6 +276,14 @@ public void setGeneralStreamNoneReaderDelayMS(String generalStreamNoneReaderDelayMS) { this.generalStreamNoneReaderDelayMS = generalStreamNoneReaderDelayMS; + } + + public String getLocalIP() { + return localIP; + } + + public void setLocalIP(String localIP) { + this.localIP = localIP; } public String getHlsFileBufSize() { @@ -609,6 +638,38 @@ this.rtpVideoMtuSize = rtpVideoMtuSize; } + public String getRtpProxyCheckSource() { + return rtpProxyCheckSource; + } + + public void setRtpProxyCheckSource(String rtpProxyCheckSource) { + this.rtpProxyCheckSource = rtpProxyCheckSource; + } + + public String getRtpProxyDumpDir() { + return rtpProxyDumpDir; + } + + public void setRtpProxyDumpDir(String rtpProxyDumpDir) { + this.rtpProxyDumpDir = rtpProxyDumpDir; + } + + public String getRtpProxyPort() { + return rtpProxyPort; + } + + public void setRtpProxyPort(String rtpProxyPort) { + this.rtpProxyPort = rtpProxyPort; + } + + public String getRtpProxyTimeoutSec() { + return rtpProxyTimeoutSec; + } + + public void setRtpProxyTimeoutSec(String rtpProxyTimeoutSec) { + this.rtpProxyTimeoutSec = rtpProxyTimeoutSec; + } + public String getRtspAuthBasic() { return rtspAuthBasic; } @@ -664,4 +725,28 @@ public void setShellPhell(String shellPhell) { this.shellPhell = shellPhell; } + + public String getWanIp() { + return wanIp; + } + + public void setWanIp(String wanIp) { + this.wanIp = wanIp; + } + + public long getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(long updateTime) { + this.updateTime = updateTime; + } + + public String getGeneralMediaServerId() { + return generalMediaServerId; + } + + public void setGeneralMediaServerId(String generalMediaServerId) { + this.generalMediaServerId = generalMediaServerId; + } } -- Gitblit v1.8.0