1
0
mirror of https://github.com/aNNiMON/ffmpegbot synced 2024-09-19 22:54:20 +03:00

Correct parameter defaults

This commit is contained in:
aNNiMON 2023-01-19 22:47:36 +02:00
parent 7fe47cad13
commit d723c1c2ec
3 changed files with 3 additions and 5 deletions

View File

@ -6,8 +6,7 @@ import java.util.List;
public class AudioBitrate extends StringParameter {
private static final List<String> VALUES = List.of(
"",
"4k", "16k", "32k", "64k", "128k",
"4k", "16k", "32k", "", "64k", "128k",
"256k", "320k", "512k"
);

View File

@ -6,8 +6,7 @@ import java.util.List;
public class VideoBitrate extends StringParameter {
private static final List<String> VALUES = List.of(
"",
"16k", "32k", "64k", "128k", "256k",
"16k", "32k", "", "64k", "128k", "256k",
"512k", "1M", "2M", "4M", "8M", "16M"
);

View File

@ -6,7 +6,7 @@ import java.util.List;
public class VideoScale extends StringParameter {
private static final List<String> VALUES = List.of(
"144", "240", "360", "480", "", "720", "1080"
"144", "240", "360", "", "480", "720", "1080"
);
public VideoScale() {