zlm rtmp 配置

This commit is contained in:
shikong 2023-08-18 15:27:38 +08:00
parent 4859dbc1e4
commit 8c71104071
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package cn.skcks.docking.gb28181.media.dto.config;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
public class RtmpConfig {
private Integer handshakeSecond;
private Integer keepAliveSecond;
private Integer modifyStamp;
private Integer port;
@JsonProperty("sslport")
private Integer sslPort;
}

View File

@ -38,4 +38,7 @@ public class ServerConfig {
@JsonUnwrapped(prefix = "rtc.")
private RtcConfig rtc;
@JsonUnwrapped(prefix = "rtmp.")
private RtmpConfig rtmp;
}