This commit is contained in:
acgist
2022-11-28 19:33:17 +08:00
parent 56dc649279
commit 7fe3babab0
28 changed files with 474 additions and 326 deletions

View File

@@ -21,10 +21,6 @@ public class MediaAudioProperties {
*/
public enum Format {
/**
* ACC
*/
ACC,
/**
* PCM
*/
@@ -41,16 +37,16 @@ public class MediaAudioProperties {
*/
@Schema(title = "格式", description = "格式")
private Format format;
/**
* 采样数
*/
@Schema(title = "采样数", description = "采样数", example = "16")
private Integer sampleSize;
/**
* 采样率
* 8000|16000|32000|48000
*/
@Schema(title = "采样率", description = "采样率", example = "8000|16000|32000|48000")
private Integer samplerate;
/**
* 采样数
*/
@Schema(title = "采样数", description = "采样数", example = "16")
private Integer samplesize;
private Integer sampleRate;
}

View File

@@ -54,7 +54,7 @@ public class MediaVideoProperties {
* 帧率(流畅)
*/
@Schema(title = "帧率", description = "帧率影响流程", example = "20|24|30|60")
private Integer framerate;
private Integer frameRate;
/**
* 分辨率(画面大小)
*/