1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.ard.work.api.domian;
|
| import lombok.Data;
|
| /**
| * 视频压缩配置信息
| *
| * @author liusuyi
| * @date 2024年08月22日11:53
| **/
| @Data
| public class VideoCompressionCfg {
| String resolution;//分辨率
| String videoBitrate;//比特率
| String videoEncType;//编码
| String frameRate;//帧率
| }
|
|