* tambah timestamp

* full resolution ganti ke PNG compression 0
* tambah reduced resolution di 1280x720 JPG quality 100
This commit is contained in:
2025-01-15 10:23:18 +07:00
parent 72e2789d50
commit 30660b9afb
5 changed files with 63 additions and 20 deletions

View File

@@ -466,6 +466,8 @@ public class CaptureView {
int liveheight = 480;
int photowidth = 640;
int photoheight = 480;
int reducewidth = 640;
int reduceheight = 480;
// mode1 selalu paling tinggi
if (cameraname.contains("ACER QHD")){
@@ -490,8 +492,10 @@ public class CaptureView {
photoheight = ObsbotMeet2.ModeBest.getHeight();
livewidth = ObsbotMeet2.ModeLive.getWidth();
liveheight = ObsbotMeet2.ModeLive.getHeight();
reducewidth = ObsbotMeet2.Mode3.getWidth();
reduceheight = ObsbotMeet2.Mode3.getHeight();
}
image.SetGrabber(grabber, livewidth,liveheight,photowidth,photoheight);
image.SetGrabber(grabber, livewidth,liveheight,photowidth,photoheight,reducewidth,reduceheight);
//TODO reconfirm requirement again
boolean use_face_detector = true;