From 0acf13445a2e3120f3d3599238401c9f2885d711 Mon Sep 17 00:00:00 2001 From: lawrencehj <1934378145@qq.com> Date: 星期三, 23 六月 2021 16:21:12 +0800 Subject: [PATCH] 改为fmp4截图 --- src/main/java/com/genersoft/iot/vmp/media/zlm/ZLMServerConfig.java | 143 +++++++++++++++++++++++++++-------------------- 1 files changed, 81 insertions(+), 62 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/media/zlm/ZLMServerConfig.java b/src/main/java/com/genersoft/iot/vmp/media/zlm/ZLMServerConfig.java index b20437b..21fcebf 100644 --- a/src/main/java/com/genersoft/iot/vmp/media/zlm/ZLMServerConfig.java +++ b/src/main/java/com/genersoft/iot/vmp/media/zlm/ZLMServerConfig.java @@ -34,11 +34,15 @@ @JSONField(name = "general.streamNoneReaderDelayMS") private String generalStreamNoneReaderDelayMS; - private String localIP; + private String ip; - private String wanIp; + private String sdpIp; - private long updateTime; + private String streamIp; + + private String updateTime; + + private String createTime; @JSONField(name = "hls.fileBufSize") private String hlsFileBufSize; @@ -62,7 +66,7 @@ private String hookEnable; @JSONField(name = "hook.on_flow_report") - private String hookOnFlowReport; + private Integer hookOnFlowReport; @JSONField(name = "hook.on_http_access") private String hookOnHttpAccess; @@ -113,7 +117,7 @@ private String httpNotFound; @JSONField(name = "http.port") - private String httpPort; + private Integer httpPort; @JSONField(name = "http.rootPath") private String httpRootPath; @@ -122,7 +126,7 @@ private String httpSendBufSize; @JSONField(name = "http.sslport") - private String httpSSLport; + private Integer httpSSLport; @JSONField(name = "multicast.addrMax") private String multicastAddrMax; @@ -155,10 +159,10 @@ private String rtmpModifyStamp; @JSONField(name = "rtmp.port") - private String rtmpPort; + private Integer rtmpPort; @JSONField(name = "rtmp.sslport") - private String rtmpSslPort; + private Integer rtmpSslPort; @JSONField(name = "rtp.audioMtuSize") private String rtpAudioMtuSize; @@ -182,7 +186,7 @@ private String rtpProxyDumpDir; @JSONField(name = "rtp_proxy.port") - private String rtpProxyPort; + private Integer rtpProxyPort; @JSONField(name = "rtp_proxy.timeoutSec") private String rtpProxyTimeoutSec; @@ -197,17 +201,16 @@ private String rtspKeepAliveSecond; @JSONField(name = "rtsp.port") - private String rtspPort; + private Integer rtspPort; @JSONField(name = "rtsp.sslport") - private String rtspSSlport; + private Integer rtspSSlport; @JSONField(name = "shell.maxReqSize") private String shellMaxReqSize; @JSONField(name = "shell.shell") private String shellPhell; - public String getApiDebug() { return apiDebug; @@ -257,6 +260,14 @@ this.generalEnableVhost = generalEnableVhost; } + public String getGeneralMediaServerId() { + return generalMediaServerId; + } + + public void setGeneralMediaServerId(String generalMediaServerId) { + this.generalMediaServerId = generalMediaServerId; + } + public String getGeneralFlowThreshold() { return generalFlowThreshold; } @@ -281,12 +292,44 @@ this.generalStreamNoneReaderDelayMS = generalStreamNoneReaderDelayMS; } - public String getLocalIP() { - return localIP; + public String getIp() { + return ip; } - public void setLocalIP(String localIP) { - this.localIP = localIP; + public void setIp(String ip) { + this.ip = ip; + } + + public String getSdpIp() { + return sdpIp; + } + + public void setSdpIp(String sdpIp) { + this.sdpIp = sdpIp; + } + + public String getStreamIp() { + return streamIp; + } + + public void setStreamIp(String streamIp) { + this.streamIp = streamIp; + } + + public String getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + + public String getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; } public String getHlsFileBufSize() { @@ -345,11 +388,11 @@ this.hookEnable = hookEnable; } - public String getHookOnFlowReport() { + public Integer getHookOnFlowReport() { return hookOnFlowReport; } - public void setHookOnFlowReport(String hookOnFlowReport) { + public void setHookOnFlowReport(Integer hookOnFlowReport) { this.hookOnFlowReport = hookOnFlowReport; } @@ -481,11 +524,11 @@ this.httpNotFound = httpNotFound; } - public String getHttpPort() { + public Integer getHttpPort() { return httpPort; } - public void setHttpPort(String httpPort) { + public void setHttpPort(Integer httpPort) { this.httpPort = httpPort; } @@ -505,11 +548,11 @@ this.httpSendBufSize = httpSendBufSize; } - public String getHttpSSLport() { + public Integer getHttpSSLport() { return httpSSLport; } - public void setHttpSSLport(String httpSSLport) { + public void setHttpSSLport(Integer httpSSLport) { this.httpSSLport = httpSSLport; } @@ -593,12 +636,20 @@ this.rtmpModifyStamp = rtmpModifyStamp; } - public String getRtmpPort() { + public Integer getRtmpPort() { return rtmpPort; } - public void setRtmpPort(String rtmpPort) { + public void setRtmpPort(Integer rtmpPort) { this.rtmpPort = rtmpPort; + } + + public Integer getRtmpSslPort() { + return rtmpSslPort; + } + + public void setRtmpSslPort(Integer rtmpSslPort) { + this.rtmpSslPort = rtmpSslPort; } public String getRtpAudioMtuSize() { @@ -657,11 +708,11 @@ this.rtpProxyDumpDir = rtpProxyDumpDir; } - public String getRtpProxyPort() { + public Integer getRtpProxyPort() { return rtpProxyPort; } - public void setRtpProxyPort(String rtpProxyPort) { + public void setRtpProxyPort(Integer rtpProxyPort) { this.rtpProxyPort = rtpProxyPort; } @@ -697,19 +748,19 @@ this.rtspKeepAliveSecond = rtspKeepAliveSecond; } - public String getRtspPort() { + public Integer getRtspPort() { return rtspPort; } - public void setRtspPort(String rtspPort) { + public void setRtspPort(Integer rtspPort) { this.rtspPort = rtspPort; } - public String getRtspSSlport() { + public Integer getRtspSSlport() { return rtspSSlport; } - public void setRtspSSlport(String rtspSSlport) { + public void setRtspSSlport(Integer rtspSSlport) { this.rtspSSlport = rtspSSlport; } @@ -727,37 +778,5 @@ 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; - } - - public String getRtmpSslPort() { - return rtmpSslPort; - } - - public void setRtmpSslPort(String rtmpSslPort) { - this.rtmpSslPort = rtmpSslPort; } } -- Gitblit v1.8.0