out of whatever reason, the product and vendor IDs of my PS3EYE changed when updating to OSX 10.14 (Mojave), leading to PS3Eye not detecting the camera.
quick fix (in PS3Eye.java):
// static final public short VENDOR_ID = 0x1415;
// static final public short PRODUCT_ID = 0x2000;
static final public short VENDOR_ID = 5141;
static final public short PRODUCT_ID = 8192;
How I got there:
find external USB cam with
ioreg -p IOUSB -l -w 0
and extract information on idProduct resp. idVendor from its return. This is what I got for the camera:
Hey there,
out of whatever reason, the product and vendor IDs of my PS3EYE changed when updating to OSX 10.14 (Mojave), leading to PS3Eye not detecting the camera.
quick fix (in
PS3Eye.java
):How I got there:
find external USB cam with
and extract information on
idProduct
resp.idVendor
from its return. This is what I got for the camera:this works like a charm.