Bartosz Firyn

Results 88 comments of Bartosz Firyn

Hi @snimavat, in regards to your question: > Why does saraxos camera capture doesnt detect all supported view sizes for the camera. Some drivers can detect possible resolutions, e.g. [webcam-capture-driver-v4l4j](https://github.com/sarxos/webcam-capture/tree/master/webcam-capture-drivers/driver-v4l4j),...

On Apple? Probably not. This specific driver (webcam-capture-driver-v4l4j) uses V4L which is available on Linux platforms, but probably not on Apples. On various Linux distributions this driver works pretty well...

Hi @snimavat, [webcam-capture-driver-native](https://github.com/frankpapenmeier/webcam-capture-driver-native) should. It's a very good piece of code. @frankpapenmeier designed it to run on different Windows versions. Instructions how to use it can be found in a...

Hej @MatisiekPL, Wygląda na to, że nie dodałeś JAR-a do classpath. Wyjątek ```NoClassDefFoundError``` występuje tylko w kilku przypadkach: 1) gdy JAR nie jest w classpath, 2) gdy statyczny inicjalizer wywali...

Ok, I was playing with the Dynamo DB settings in the Amazon Console and it seems like this message is generated when throughput to Dynamo DB table is too low...

If this is the case described by @pban this will need a fix in library. What Java version are you using?

Hi @olaLH, What Linux distribution are you using?

I supposed that `lshal` is available in most of the Linux distros if `dmidecode` is missing, but I was wrong. I just verified on Arch Linux that neither `dmidecode` nor...

Hi @fgroupindonesia I hope this can help: https://github.com/sarxos/win-registry/blob/master/src/example/java/com/sarxos/win32/regutil/GetKeyValue.java In this example it reads HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProductName. You can test the code for more details.

@betrand, Can you please try: ``` java Webcam webcam = Webcam.getDefault(); webcam.open(); for (int i = 0; i < 5; i++) { if (webcam.isImageNew()) { LOG.info("webcam has image"); } BufferedImage...