648540858
2024-03-20 c7ca9703c196c5ac39de5594049171f3a1bf067c
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
package com.genersoft.iot.vmp.media.bean;
 
import io.swagger.v3.oas.annotations.media.Schema;
 
/**
 * 视频信息
 */
@Schema(description = "视频信息")
public class Track {
    @Schema(description = "观看人数")
    private Integer readerCount;
    @Schema(description = "视频编码类型")
    private String videoCodec;
    @Schema(description = "视频宽度")
    private Integer width;
    @Schema(description = "视频高度")
    private Integer height;
    @Schema(description = "音频编码类型")
    private String audioCodec;
    @Schema(description = "音频通道数")
    private Integer audioChannels;
    @Schema(description = "音频采样率")
    private Integer audioSampleRate;
 
    public Integer getReaderCount() {
        return readerCount;
    }
 
    public void setReaderCount(Integer readerCount) {
        this.readerCount = readerCount;
    }
 
    public String getVideoCodec() {
        return videoCodec;
    }
 
    public void setVideoCodec(String videoCodec) {
        this.videoCodec = videoCodec;
    }
 
    public Integer getWidth() {
        return width;
    }
 
    public void setWidth(Integer width) {
        this.width = width;
    }
 
    public Integer getHeight() {
        return height;
    }
 
    public void setHeight(Integer height) {
        this.height = height;
    }
 
    public String getAudioCodec() {
        return audioCodec;
    }
 
    public void setAudioCodec(String audioCodec) {
        this.audioCodec = audioCodec;
    }
 
    public Integer getAudioChannels() {
        return audioChannels;
    }
 
    public void setAudioChannels(Integer audioChannels) {
        this.audioChannels = audioChannels;
    }
 
    public Integer getAudioSampleRate() {
        return audioSampleRate;
    }
 
    public void setAudioSampleRate(Integer audioSampleRate) {
        this.audioSampleRate = audioSampleRate;
    }
}