panlinlin
2021-03-30 56859d09df8d4226882d43934acf32d60a3b51d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package com.genersoft.iot.vmp.media.zlm.dto;
 
public class StreamProxyDto {
    private String type;
    private String app;
    private String stream;
    private String url;
    private String src_url;
    private String dst_url;
    private int timeout_ms;
    private String ffmpeg_cmd_key;
    private String rtp_type;
    private boolean enable;
    private boolean enable_hls;
    private boolean enable_mp4;
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getApp() {
        return app;
    }
 
    public void setApp(String app) {
        this.app = app;
    }
 
    public String getStream() {
        return stream;
    }
 
    public void setStream(String stream) {
        this.stream = stream;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getSrc_url() {
        return src_url;
    }
 
    public void setSrc_url(String src_url) {
        this.src_url = src_url;
    }
 
    public String getDst_url() {
        return dst_url;
    }
 
    public void setDst_url(String dst_url) {
        this.dst_url = dst_url;
    }
 
    public int getTimeout_ms() {
        return timeout_ms;
    }
 
    public void setTimeout_ms(int timeout_ms) {
        this.timeout_ms = timeout_ms;
    }
 
    public String getFfmpeg_cmd_key() {
        return ffmpeg_cmd_key;
    }
 
    public void setFfmpeg_cmd_key(String ffmpeg_cmd_key) {
        this.ffmpeg_cmd_key = ffmpeg_cmd_key;
    }
 
    public String getRtp_type() {
        return rtp_type;
    }
 
    public void setRtp_type(String rtp_type) {
        this.rtp_type = rtp_type;
    }
 
    public boolean isEnable() {
        return enable;
    }
 
    public void setEnable(boolean enable) {
        this.enable = enable;
    }
 
    public boolean isEnable_hls() {
        return enable_hls;
    }
 
    public void setEnable_hls(boolean enable_hls) {
        this.enable_hls = enable_hls;
    }
 
    public boolean isEnable_mp4() {
        return enable_mp4;
    }
 
    public void setEnable_mp4(boolean enable_mp4) {
        this.enable_mp4 = enable_mp4;
    }
}