econsysqtcam / qtcam

QtCAM is a free, Open Source Linux Webcamera Software with more than 10 image control settings, extension settings and Color space switching.
http://www.e-consystems.com/opensource-linux-webcam-software-application.asp
GNU General Public License v3.0
185 stars 95 forks source link

UVC CAMERA #37

Open avi9999 opened 4 years ago

avi9999 commented 4 years ago

Hi!

we try to use the UVC camera project we are working with android 9 and usb camera from missumi with USB Camera application from play store we can see the video we can read the usb camera information but from the UVC camera project there is message “check no usb camera” we found that the interfacecount it is zero!!!

final int count = device.getInterfaceCount();   for (int i = 0; i < count; i++) {      final UsbInterface intf = device.getInterface(i);      if (matches(intf.getInterfaceClass(), intf.getInterfaceSubclass(), intf.getInterfaceProtocol())) {         return true;      }   }   return false;}

can you help us please thanks in advanced

avi@infodraw.com