first commit

This commit is contained in:
2024-11-09 08:55:17 +07:00
commit f6ee4817e6
98 changed files with 85493 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
package Camera;
import lombok.Getter;
@Getter
public enum ObsbotMeet2 {
Mode1(8.3, 3840, 2160, "16:9"),
Mode2(2.1, 1920, 1080, "16:9"),
Mode3(0.9, 1280, 720, "16:9"),
Mode4(0.2, 640, 360, "16:9"),
Mode5(0.3, 640, 480, "4:3"),
ModeBest(8.3, 3840, 2160, "16:9"),
ModeLive(0.3, 640, 480, "4:3");
private final double Megapixel;
private final int width;
private final int height;
private final String aspectRatio;
ObsbotMeet2(double Megapixel, int width, int height, String aspectRatio) {
this.Megapixel = Megapixel;
this.width = width;
this.height = height;
this.aspectRatio = aspectRatio;
}
}