web页面集成
This commit is contained in:
@@ -31,6 +31,9 @@ public class MediaServerConfig {
|
||||
@JSONField(name = "general.streamNoneReaderDelayMS")
|
||||
private String generalStreamNoneReaderDelayMS;
|
||||
|
||||
@JSONField(name = "general.localIP")
|
||||
private String localIP;
|
||||
|
||||
@JSONField(name = "hls.fileBufSize")
|
||||
private String hlsFileBufSize;
|
||||
|
||||
@@ -163,6 +166,18 @@ public class MediaServerConfig {
|
||||
@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;
|
||||
|
||||
@@ -664,4 +679,44 @@ public class MediaServerConfig {
|
||||
public void setShellPhell(String shellPhell) {
|
||||
this.shellPhell = shellPhell;
|
||||
}
|
||||
|
||||
public String getLocalIP() {
|
||||
return localIP;
|
||||
}
|
||||
|
||||
public void setLocalIP(String localIP) {
|
||||
this.localIP = localIP;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,10 +16,6 @@ public class SipConfig {
|
||||
String sipId;
|
||||
@Value("${sip.password}")
|
||||
String sipPassword;
|
||||
@Value("${media.ip}")
|
||||
String mediaIp;
|
||||
@Value("${media.port}")
|
||||
Integer mediaPort;
|
||||
|
||||
@Value("${sip.ptz.speed:50}")
|
||||
Integer speed;
|
||||
@@ -56,22 +52,6 @@ public class SipConfig {
|
||||
this.sipPassword = sipPassword;
|
||||
}
|
||||
|
||||
public String getMediaIp() {
|
||||
return mediaIp;
|
||||
}
|
||||
|
||||
public void setMediaIp(String mediaIp) {
|
||||
this.mediaIp = mediaIp;
|
||||
}
|
||||
|
||||
public Integer getMediaPort() {
|
||||
return mediaPort;
|
||||
}
|
||||
|
||||
public void setMediaPort(Integer mediaPort) {
|
||||
this.mediaPort = mediaPort;
|
||||
}
|
||||
|
||||
public Integer getSpeed() {
|
||||
return speed;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user