package cn.exrick.xboot.your.vo;
|
|
public class PreviewURLsVo {
|
private String protocol="rtsp";//协议类型(rtsp-rtsp协议,rtmp-rtmp协议,hls-hLS协议),未填写为rtsp协议
|
private String cameraIndexCode;
|
private Integer streamType=0;//码流类型(0-主码流,1-子码流),未填默认为主码流
|
private Integer transmode=0;//协议类型( 0-udp,1-tcp),默认为tcp,在protocol设置为rtsp或者rtmp时有效
|
private String expand="transcode=0";//
|
|
public String getProtocol() {
|
return protocol;
|
}
|
|
public void setProtocol(String protocol) {
|
this.protocol = protocol;
|
}
|
|
public String getCameraIndexCode() {
|
return cameraIndexCode;
|
}
|
|
public void setCameraIndexCode(String cameraIndexCode) {
|
this.cameraIndexCode = cameraIndexCode;
|
}
|
|
public Integer getStreamType() {
|
return streamType;
|
}
|
|
public void setStreamType(Integer streamType) {
|
this.streamType = streamType;
|
}
|
|
public Integer getTransmode() {
|
return transmode;
|
}
|
|
public void setTransmode(Integer transmode) {
|
this.transmode = transmode;
|
}
|
|
public String getExpand() {
|
return expand;
|
}
|
|
public void setExpand(String expand) {
|
this.expand = expand;
|
}
|
}
|