| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816 |
- package com.genersoft.iot.vmp.media.zlm;
- import com.alibaba.fastjson.annotation.JSONField;
- public class ZLMServerConfig {
- @JSONField(name = "api.apiDebug")
- private String apiDebug;
- @JSONField(name = "api.secret")
- private String apiSecret;
- @JSONField(name = "ffmpeg.bin")
- private String ffmpegBin;
- @JSONField(name = "ffmpeg.cmd")
- private String ffmpegCmd;
- @JSONField(name = "ffmpeg.log")
- private String ffmpegLog;
- @JSONField(name = "general.enableVhost")
- private String generalEnableVhost;
- @JSONField(name = "general.mediaServerId")
- private String generalMediaServerId;
- @JSONField(name = "general.flowThreshold")
- private String generalFlowThreshold;
- @JSONField(name = "general.maxStreamWaitMS")
- private String generalMaxStreamWaitMS;
- @JSONField(name = "general.streamNoneReaderDelayMS")
- private int generalStreamNoneReaderDelayMS;
- @JSONField(name = "ip")
- private String ip;
- private String sdpIp;
- private String streamIp;
- private String hookIp;
- private String updateTime;
- private String createTime;
- @JSONField(name = "hls.fileBufSize")
- private String hlsFileBufSize;
- @JSONField(name = "hls.filePath")
- private String hlsFilePath;
- @JSONField(name = "hls.segDur")
- private String hlsSegDur;
- @JSONField(name = "hls.segNum")
- private String hlsSegNum;
- @JSONField(name = "hook.access_file_except_hls")
- private String hookAccessFileExceptHLS;
- @JSONField(name = "hook.admin_params")
- private String hookAdminParams;
- @JSONField(name = "hook.alive_interval")
- private int hookAliveInterval;
- @JSONField(name = "hook.enable")
- private String hookEnable;
- @JSONField(name = "hook.on_flow_report")
- private String hookOnFlowReport;
- @JSONField(name = "hook.on_http_access")
- private String hookOnHttpAccess;
- @JSONField(name = "hook.on_play")
- private String hookOnPlay;
- @JSONField(name = "hook.on_publish")
- private String hookOnPublish;
- @JSONField(name = "hook.on_record_mp4")
- private String hookOnRecordMp4;
- @JSONField(name = "hook.on_rtsp_auth")
- private String hookOnRtspAuth;
- @JSONField(name = "hook.on_rtsp_realm")
- private String hookOnRtspRealm;
- @JSONField(name = "hook.on_shell_login")
- private String hookOnShellLogin;
- @JSONField(name = "hook.on_stream_changed")
- private String hookOnStreamChanged;
- @JSONField(name = "hook.on_stream_none_reader")
- private String hookOnStreamNoneReader;
- @JSONField(name = "hook.on_stream_not_found")
- private String hookOnStreamNotFound;
- @JSONField(name = "hook.timeoutSec")
- private String hookTimeoutSec;
- @JSONField(name = "http.charSet")
- private String httpCharSet;
- @JSONField(name = "http.keepAliveSecond")
- private String httpKeepAliveSecond;
- @JSONField(name = "http.maxReqCount")
- private String httpMaxReqCount;
- @JSONField(name = "http.maxReqSize")
- private String httpMaxReqSize;
- @JSONField(name = "http.notFound")
- private String httpNotFound;
- @JSONField(name = "http.port")
- private int httpPort;
- @JSONField(name = "http.rootPath")
- private String httpRootPath;
- @JSONField(name = "http.sendBufSize")
- private String httpSendBufSize;
- @JSONField(name = "http.sslport")
- private int httpSSLport;
- @JSONField(name = "multicast.addrMax")
- private String multicastAddrMax;
- @JSONField(name = "multicast.addrMin")
- private String multicastAddrMin;
- @JSONField(name = "multicast.udpTTL")
- private String multicastUdpTTL;
- @JSONField(name = "record.appName")
- private String recordAppName;
- @JSONField(name = "record.filePath")
- private String recordFilePath;
- @JSONField(name = "record.fileSecond")
- private String recordFileSecond;
- @JSONField(name = "record.sampleMS")
- private String recordFileSampleMS;
- @JSONField(name = "rtmp.handshakeSecond")
- private String rtmpHandshakeSecond;
- @JSONField(name = "rtmp.keepAliveSecond")
- private String rtmpKeepAliveSecond;
- @JSONField(name = "rtmp.modifyStamp")
- private String rtmpModifyStamp;
- @JSONField(name = "rtmp.port")
- private int rtmpPort;
- @JSONField(name = "rtmp.sslport")
- private int rtmpSslPort;
- @JSONField(name = "rtp.audioMtuSize")
- private String rtpAudioMtuSize;
- @JSONField(name = "rtp.clearCount")
- private String rtpClearCount;
- @JSONField(name = "rtp.cycleMS")
- private String rtpCycleMS;
- @JSONField(name = "rtp.maxRtpCount")
- private String rtpMaxRtpCount;
- @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 int rtpProxyPort;
- @JSONField(name = "rtp_proxy.port_range")
- private String portRange;
- @JSONField(name = "rtp_proxy.timeoutSec")
- private String rtpProxyTimeoutSec;
- @JSONField(name = "rtsp.authBasic")
- private String rtspAuthBasic;
- @JSONField(name = "rtsp.handshakeSecond")
- private String rtspHandshakeSecond;
- @JSONField(name = "rtsp.keepAliveSecond")
- private String rtspKeepAliveSecond;
- @JSONField(name = "rtsp.port")
- private int rtspPort;
- @JSONField(name = "rtsp.sslport")
- private int rtspSSlport;
- @JSONField(name = "shell.maxReqSize")
- private String shellMaxReqSize;
- @JSONField(name = "shell.shell")
- private String shellPhell;
- public String getHookIp() {
- return hookIp;
- }
- public void setHookIp(String hookIp) {
- this.hookIp = hookIp;
- }
- public String getApiDebug() {
- return apiDebug;
- }
- public void setApiDebug(String apiDebug) {
- this.apiDebug = apiDebug;
- }
- public String getApiSecret() {
- return apiSecret;
- }
- public void setApiSecret(String apiSecret) {
- this.apiSecret = apiSecret;
- }
- public String getFfmpegBin() {
- return ffmpegBin;
- }
- public void setFfmpegBin(String ffmpegBin) {
- this.ffmpegBin = ffmpegBin;
- }
- public String getFfmpegCmd() {
- return ffmpegCmd;
- }
- public void setFfmpegCmd(String ffmpegCmd) {
- this.ffmpegCmd = ffmpegCmd;
- }
- public String getFfmpegLog() {
- return ffmpegLog;
- }
- public void setFfmpegLog(String ffmpegLog) {
- this.ffmpegLog = ffmpegLog;
- }
- public String getGeneralEnableVhost() {
- return generalEnableVhost;
- }
- public void setGeneralEnableVhost(String generalEnableVhost) {
- this.generalEnableVhost = generalEnableVhost;
- }
- public String getGeneralMediaServerId() {
- return generalMediaServerId;
- }
- public void setGeneralMediaServerId(String generalMediaServerId) {
- this.generalMediaServerId = generalMediaServerId;
- }
- public String getGeneralFlowThreshold() {
- return generalFlowThreshold;
- }
- public void setGeneralFlowThreshold(String generalFlowThreshold) {
- this.generalFlowThreshold = generalFlowThreshold;
- }
- public String getGeneralMaxStreamWaitMS() {
- return generalMaxStreamWaitMS;
- }
- public void setGeneralMaxStreamWaitMS(String generalMaxStreamWaitMS) {
- this.generalMaxStreamWaitMS = generalMaxStreamWaitMS;
- }
- public int getGeneralStreamNoneReaderDelayMS() {
- return generalStreamNoneReaderDelayMS;
- }
- public void setGeneralStreamNoneReaderDelayMS(int generalStreamNoneReaderDelayMS) {
- this.generalStreamNoneReaderDelayMS = generalStreamNoneReaderDelayMS;
- }
- public String getIp() {
- return ip;
- }
- 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() {
- return hlsFileBufSize;
- }
- public void setHlsFileBufSize(String hlsFileBufSize) {
- this.hlsFileBufSize = hlsFileBufSize;
- }
- public String getHlsFilePath() {
- return hlsFilePath;
- }
- public void setHlsFilePath(String hlsFilePath) {
- this.hlsFilePath = hlsFilePath;
- }
- public String getHlsSegDur() {
- return hlsSegDur;
- }
- public void setHlsSegDur(String hlsSegDur) {
- this.hlsSegDur = hlsSegDur;
- }
- public String getHlsSegNum() {
- return hlsSegNum;
- }
- public void setHlsSegNum(String hlsSegNum) {
- this.hlsSegNum = hlsSegNum;
- }
- public String getHookAccessFileExceptHLS() {
- return hookAccessFileExceptHLS;
- }
- public void setHookAccessFileExceptHLS(String hookAccessFileExceptHLS) {
- this.hookAccessFileExceptHLS = hookAccessFileExceptHLS;
- }
- public String getHookAdminParams() {
- return hookAdminParams;
- }
- public void setHookAdminParams(String hookAdminParams) {
- this.hookAdminParams = hookAdminParams;
- }
- public String getHookEnable() {
- return hookEnable;
- }
- public void setHookEnable(String hookEnable) {
- this.hookEnable = hookEnable;
- }
- public String getHookOnFlowReport() {
- return hookOnFlowReport;
- }
- public void setHookOnFlowReport(String hookOnFlowReport) {
- this.hookOnFlowReport = hookOnFlowReport;
- }
- public String getHookOnHttpAccess() {
- return hookOnHttpAccess;
- }
- public void setHookOnHttpAccess(String hookOnHttpAccess) {
- this.hookOnHttpAccess = hookOnHttpAccess;
- }
- public String getHookOnPlay() {
- return hookOnPlay;
- }
- public void setHookOnPlay(String hookOnPlay) {
- this.hookOnPlay = hookOnPlay;
- }
- public String getHookOnPublish() {
- return hookOnPublish;
- }
- public void setHookOnPublish(String hookOnPublish) {
- this.hookOnPublish = hookOnPublish;
- }
- public String getHookOnRecordMp4() {
- return hookOnRecordMp4;
- }
- public void setHookOnRecordMp4(String hookOnRecordMp4) {
- this.hookOnRecordMp4 = hookOnRecordMp4;
- }
- public String getHookOnRtspAuth() {
- return hookOnRtspAuth;
- }
- public void setHookOnRtspAuth(String hookOnRtspAuth) {
- this.hookOnRtspAuth = hookOnRtspAuth;
- }
- public String getHookOnRtspRealm() {
- return hookOnRtspRealm;
- }
- public void setHookOnRtspRealm(String hookOnRtspRealm) {
- this.hookOnRtspRealm = hookOnRtspRealm;
- }
- public String getHookOnShellLogin() {
- return hookOnShellLogin;
- }
- public void setHookOnShellLogin(String hookOnShellLogin) {
- this.hookOnShellLogin = hookOnShellLogin;
- }
- public String getHookOnStreamChanged() {
- return hookOnStreamChanged;
- }
- public void setHookOnStreamChanged(String hookOnStreamChanged) {
- this.hookOnStreamChanged = hookOnStreamChanged;
- }
- public String getHookOnStreamNoneReader() {
- return hookOnStreamNoneReader;
- }
- public void setHookOnStreamNoneReader(String hookOnStreamNoneReader) {
- this.hookOnStreamNoneReader = hookOnStreamNoneReader;
- }
- public String getHookOnStreamNotFound() {
- return hookOnStreamNotFound;
- }
- public void setHookOnStreamNotFound(String hookOnStreamNotFound) {
- this.hookOnStreamNotFound = hookOnStreamNotFound;
- }
- public String getHookTimeoutSec() {
- return hookTimeoutSec;
- }
- public void setHookTimeoutSec(String hookTimeoutSec) {
- this.hookTimeoutSec = hookTimeoutSec;
- }
- public String getHttpCharSet() {
- return httpCharSet;
- }
- public void setHttpCharSet(String httpCharSet) {
- this.httpCharSet = httpCharSet;
- }
- public String getHttpKeepAliveSecond() {
- return httpKeepAliveSecond;
- }
- public void setHttpKeepAliveSecond(String httpKeepAliveSecond) {
- this.httpKeepAliveSecond = httpKeepAliveSecond;
- }
- public String getHttpMaxReqCount() {
- return httpMaxReqCount;
- }
- public void setHttpMaxReqCount(String httpMaxReqCount) {
- this.httpMaxReqCount = httpMaxReqCount;
- }
- public String getHttpMaxReqSize() {
- return httpMaxReqSize;
- }
- public void setHttpMaxReqSize(String httpMaxReqSize) {
- this.httpMaxReqSize = httpMaxReqSize;
- }
- public String getHttpNotFound() {
- return httpNotFound;
- }
- public void setHttpNotFound(String httpNotFound) {
- this.httpNotFound = httpNotFound;
- }
- public int getHttpPort() {
- return httpPort;
- }
- public void setHttpPort(int httpPort) {
- this.httpPort = httpPort;
- }
- public String getHttpRootPath() {
- return httpRootPath;
- }
- public void setHttpRootPath(String httpRootPath) {
- this.httpRootPath = httpRootPath;
- }
- public String getHttpSendBufSize() {
- return httpSendBufSize;
- }
- public void setHttpSendBufSize(String httpSendBufSize) {
- this.httpSendBufSize = httpSendBufSize;
- }
- public int getHttpSSLport() {
- return httpSSLport;
- }
- public void setHttpSSLport(int httpSSLport) {
- this.httpSSLport = httpSSLport;
- }
- public String getMulticastAddrMax() {
- return multicastAddrMax;
- }
- public void setMulticastAddrMax(String multicastAddrMax) {
- this.multicastAddrMax = multicastAddrMax;
- }
- public String getMulticastAddrMin() {
- return multicastAddrMin;
- }
- public void setMulticastAddrMin(String multicastAddrMin) {
- this.multicastAddrMin = multicastAddrMin;
- }
- public String getMulticastUdpTTL() {
- return multicastUdpTTL;
- }
- public void setMulticastUdpTTL(String multicastUdpTTL) {
- this.multicastUdpTTL = multicastUdpTTL;
- }
- public String getRecordAppName() {
- return recordAppName;
- }
- public void setRecordAppName(String recordAppName) {
- this.recordAppName = recordAppName;
- }
- public String getRecordFilePath() {
- return recordFilePath;
- }
- public void setRecordFilePath(String recordFilePath) {
- this.recordFilePath = recordFilePath;
- }
- public String getRecordFileSecond() {
- return recordFileSecond;
- }
- public void setRecordFileSecond(String recordFileSecond) {
- this.recordFileSecond = recordFileSecond;
- }
- public String getRecordFileSampleMS() {
- return recordFileSampleMS;
- }
- public void setRecordFileSampleMS(String recordFileSampleMS) {
- this.recordFileSampleMS = recordFileSampleMS;
- }
- public String getRtmpHandshakeSecond() {
- return rtmpHandshakeSecond;
- }
- public void setRtmpHandshakeSecond(String rtmpHandshakeSecond) {
- this.rtmpHandshakeSecond = rtmpHandshakeSecond;
- }
- public String getRtmpKeepAliveSecond() {
- return rtmpKeepAliveSecond;
- }
- public void setRtmpKeepAliveSecond(String rtmpKeepAliveSecond) {
- this.rtmpKeepAliveSecond = rtmpKeepAliveSecond;
- }
- public String getRtmpModifyStamp() {
- return rtmpModifyStamp;
- }
- public void setRtmpModifyStamp(String rtmpModifyStamp) {
- this.rtmpModifyStamp = rtmpModifyStamp;
- }
- public int getRtmpPort() {
- return rtmpPort;
- }
- public void setRtmpPort(int rtmpPort) {
- this.rtmpPort = rtmpPort;
- }
- public int getRtmpSslPort() {
- return rtmpSslPort;
- }
- public void setRtmpSslPort(int rtmpSslPort) {
- this.rtmpSslPort = rtmpSslPort;
- }
- public String getRtpAudioMtuSize() {
- return rtpAudioMtuSize;
- }
- public void setRtpAudioMtuSize(String rtpAudioMtuSize) {
- this.rtpAudioMtuSize = rtpAudioMtuSize;
- }
- public String getRtpClearCount() {
- return rtpClearCount;
- }
- public void setRtpClearCount(String rtpClearCount) {
- this.rtpClearCount = rtpClearCount;
- }
- public String getRtpCycleMS() {
- return rtpCycleMS;
- }
- public void setRtpCycleMS(String rtpCycleMS) {
- this.rtpCycleMS = rtpCycleMS;
- }
- public String getRtpMaxRtpCount() {
- return rtpMaxRtpCount;
- }
- public void setRtpMaxRtpCount(String rtpMaxRtpCount) {
- this.rtpMaxRtpCount = rtpMaxRtpCount;
- }
- public String getRtpVideoMtuSize() {
- return rtpVideoMtuSize;
- }
- public void setRtpVideoMtuSize(String rtpVideoMtuSize) {
- 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 int getRtpProxyPort() {
- return rtpProxyPort;
- }
- public void setRtpProxyPort(int rtpProxyPort) {
- this.rtpProxyPort = rtpProxyPort;
- }
- public String getRtpProxyTimeoutSec() {
- return rtpProxyTimeoutSec;
- }
- public void setRtpProxyTimeoutSec(String rtpProxyTimeoutSec) {
- this.rtpProxyTimeoutSec = rtpProxyTimeoutSec;
- }
- public String getRtspAuthBasic() {
- return rtspAuthBasic;
- }
- public void setRtspAuthBasic(String rtspAuthBasic) {
- this.rtspAuthBasic = rtspAuthBasic;
- }
- public String getRtspHandshakeSecond() {
- return rtspHandshakeSecond;
- }
- public void setRtspHandshakeSecond(String rtspHandshakeSecond) {
- this.rtspHandshakeSecond = rtspHandshakeSecond;
- }
- public String getRtspKeepAliveSecond() {
- return rtspKeepAliveSecond;
- }
- public void setRtspKeepAliveSecond(String rtspKeepAliveSecond) {
- this.rtspKeepAliveSecond = rtspKeepAliveSecond;
- }
- public int getRtspPort() {
- return rtspPort;
- }
- public void setRtspPort(int rtspPort) {
- this.rtspPort = rtspPort;
- }
- public int getRtspSSlport() {
- return rtspSSlport;
- }
- public void setRtspSSlport(int rtspSSlport) {
- this.rtspSSlport = rtspSSlport;
- }
- public String getShellMaxReqSize() {
- return shellMaxReqSize;
- }
- public void setShellMaxReqSize(String shellMaxReqSize) {
- this.shellMaxReqSize = shellMaxReqSize;
- }
- public String getShellPhell() {
- return shellPhell;
- }
- public void setShellPhell(String shellPhell) {
- this.shellPhell = shellPhell;
- }
- public int getHookAliveInterval() {
- return hookAliveInterval;
- }
- public void setHookAliveInterval(int hookAliveInterval) {
- this.hookAliveInterval = hookAliveInterval;
- }
- public String getPortRange() {
- return portRange;
- }
- public void setPortRange(String portRange) {
- this.portRange = portRange;
- }
- }
|