File was renamed from src/main/java/com/genersoft/iot/vmp/conf/MediaServerConfig.java |
| | |
| | | package com.genersoft.iot.vmp.conf; |
| | | package com.genersoft.iot.vmp.media.zlm; |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | |
| | | public class MediaServerConfig { |
| | | public class ZLMServerConfig { |
| | | |
| | | @JSONField(name = "api.apiDebug") |
| | | private String apiDebug; |
| | |
| | | |
| | | @JSONField(name = "rtmp.port") |
| | | private String rtmpPort; |
| | | |
| | | @JSONField(name = "rtmp.sslport") |
| | | private String rtmpSslPort; |
| | | |
| | | @JSONField(name = "rtp.audioMtuSize") |
| | | private String rtpAudioMtuSize; |
| | |
| | | public void setGeneralMediaServerId(String generalMediaServerId) { |
| | | this.generalMediaServerId = generalMediaServerId; |
| | | } |
| | | |
| | | public String getRtmpSslPort() { |
| | | return rtmpSslPort; |
| | | } |
| | | |
| | | public void setRtmpSslPort(String rtmpSslPort) { |
| | | this.rtmpSslPort = rtmpSslPort; |
| | | } |
| | | } |