648540858
2022-05-06 5d901b5e3f033e8b04e53420d68626cbd87431c8
src/main/java/com/genersoft/iot/vmp/common/StreamInfo.java
@@ -4,28 +4,52 @@
public class StreamInfo {
    private String ssrc;
    private String streamId;
    private String app;
    private String stream;
    private String deviceID;
    private String cahnnelId;
    private String channelId;
    private String flv;
    private String https_flv;
    private String ws_flv;
    private String wss_flv;
    private String fmp4;
    private String https_fmp4;
    private String ws_fmp4;
    private String wss_fmp4;
    private String hls;
    private String https_hls;
    private String ws_hls;
    private String wss_hls;
    private String ts;
    private String https_ts;
    private String ws_ts;
    private String wss_ts;
    private String rtmp;
    private String rtmps;
    private String rtsp;
    private JSONArray tracks;
    private String rtsps;
    private String rtc;
    private String mediaServerId;
    private Object tracks;
    private String startTime;
    private String endTime;
    private double progress;
    public String getSsrc() {
        return ssrc;
    public static class TransactionInfo{
        public String callId;
        public String localTag;
        public String remoteTag;
        public String branch;
    }
    public void setSsrc(String ssrc) {
        this.ssrc = ssrc;
    private TransactionInfo transactionInfo;
    public String getApp() {
        return app;
    }
    public void setApp(String app) {
        this.app = app;
    }
    public String getDeviceID() {
@@ -36,12 +60,12 @@
        this.deviceID = deviceID;
    }
    public String getCahnnelId() {
        return cahnnelId;
    public String getChannelId() {
        return channelId;
    }
    public void setCahnnelId(String cahnnelId) {
        this.cahnnelId = cahnnelId;
    public void setChannelId(String channelId) {
        this.channelId = channelId;
    }
    public String getFlv() {
@@ -84,11 +108,11 @@
        this.rtsp = rtsp;
    }
    public JSONArray getTracks() {
    public Object getTracks() {
        return tracks;
    }
    public void setTracks(JSONArray tracks) {
    public void setTracks(Object tracks) {
        this.tracks = tracks;
    }
@@ -132,11 +156,140 @@
        this.ws_ts = ws_ts;
    }
    public String getStreamId() {
        return streamId;
    public String getStream() {
        return stream;
    }
    public void setStreamId(String streamId) {
        this.streamId = streamId;
    public void setStream(String stream) {
        this.stream = stream;
    }
    public String getRtc() {
        return rtc;
    }
    public void setRtc(String rtc) {
        this.rtc = rtc;
    }
    public TransactionInfo getTransactionInfo() {
        return transactionInfo;
    }
    public void setTransactionInfo(TransactionInfo transactionInfo) {
        this.transactionInfo = transactionInfo;
    }
    public String getMediaServerId() {
        return mediaServerId;
    }
    public void setMediaServerId(String mediaServerId) {
        this.mediaServerId = mediaServerId;
    }
    public String getHttps_flv() {
        return https_flv;
    }
    public void setHttps_flv(String https_flv) {
        this.https_flv = https_flv;
    }
    public String getWss_flv() {
        return wss_flv;
    }
    public void setWss_flv(String wss_flv) {
        this.wss_flv = wss_flv;
    }
    public String getWss_fmp4() {
        return wss_fmp4;
    }
    public void setWss_fmp4(String wss_fmp4) {
        this.wss_fmp4 = wss_fmp4;
    }
    public String getWss_hls() {
        return wss_hls;
    }
    public void setWss_hls(String wss_hls) {
        this.wss_hls = wss_hls;
    }
    public String getWss_ts() {
        return wss_ts;
    }
    public void setWss_ts(String wss_ts) {
        this.wss_ts = wss_ts;
    }
    public String getRtmps() {
        return rtmps;
    }
    public void setRtmps(String rtmps) {
        this.rtmps = rtmps;
    }
    public String getRtsps() {
        return rtsps;
    }
    public void setRtsps(String rtsps) {
        this.rtsps = rtsps;
    }
    public String getHttps_hls() {
        return https_hls;
    }
    public void setHttps_hls(String https_hls) {
        this.https_hls = https_hls;
    }
    public String getHttps_fmp4() {
        return https_fmp4;
    }
    public void setHttps_fmp4(String https_fmp4) {
        this.https_fmp4 = https_fmp4;
    }
    public String getHttps_ts() {
        return https_ts;
    }
    public void setHttps_ts(String https_ts) {
        this.https_ts = https_ts;
    }
    public String getStartTime() {
        return startTime;
    }
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
    public String getEndTime() {
        return endTime;
    }
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
    public double getProgress() {
        return progress;
    }
    public void setProgress(double progress) {
        this.progress = progress;
    }
}