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;
|
}
|
}
|