leesam
2024-04-10 16b7e4a7ef473a6af29ec78aeb2f471fa398efdd
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
package com.genersoft.iot.vmp.media.bean;
 
public class ResultForOnPublish {
 
    private boolean enable_audio;
    private boolean enable_mp4;
    private int mp4_max_second;
    private String mp4_save_path;
    private String stream_replace;
    private Integer modify_stamp;
 
    public boolean isEnable_audio() {
        return enable_audio;
    }
 
    public void setEnable_audio(boolean enable_audio) {
        this.enable_audio = enable_audio;
    }
 
    public boolean isEnable_mp4() {
        return enable_mp4;
    }
 
    public void setEnable_mp4(boolean enable_mp4) {
        this.enable_mp4 = enable_mp4;
    }
 
    public int getMp4_max_second() {
        return mp4_max_second;
    }
 
    public void setMp4_max_second(int mp4_max_second) {
        this.mp4_max_second = mp4_max_second;
    }
 
    public String getMp4_save_path() {
        return mp4_save_path;
    }
 
    public void setMp4_save_path(String mp4_save_path) {
        this.mp4_save_path = mp4_save_path;
    }
 
    public String getStream_replace() {
        return stream_replace;
    }
 
    public void setStream_replace(String stream_replace) {
        this.stream_replace = stream_replace;
    }
 
    public Integer getModify_stamp() {
        return modify_stamp;
    }
 
    public void setModify_stamp(Integer modify_stamp) {
        this.modify_stamp = modify_stamp;
    }
}