We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f688fc commit 0190efbCopy full SHA for 0190efb
webcam-capture/src/main/java/com/github/sarxos/webcam/ds/buildin/WebcamDefaultDevice.java
@@ -27,6 +27,12 @@
27
28
public class WebcamDefaultDevice implements WebcamDevice {
29
30
+ static {
31
+ if (!"true".equals(System.getProperty("webcam.debug"))) {
32
+ System.setProperty("bridj.quiet", "true");
33
+ }
34
35
+
36
public static final Dimension SIZE_QQVGA = new Dimension(176, 144);
37
public static final Dimension SIZE_QVGA = new Dimension(320, 240);
38
public static final Dimension SIZE_CIF = new Dimension(352, 288);
0 commit comments