Solved Cheap chinese webcam to work with FreeBSD?

Is device name /dev/video0 or what? Can't find it..

Code:
ugen7.3: <GENERAL GENERAL - UVC> at usbus7, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON (100mA)

  bLength = 0x0012 
  bDescriptorType = 0x0001 
  bcdUSB = 0x0200 
  bDeviceClass = 0x00ef  <Miscellaneous device>
  bDeviceSubClass = 0x0002 
  bDeviceProtocol = 0x0001 
  bMaxPacketSize0 = 0x0040 
  idVendor = 0x1b3f 
  idProduct = 0x2002 
  bcdDevice = 0x0100 
  iManufacturer = 0x0001  <GENERAL>
  iProduct = 0x0002  <GENERAL - UVC >
  iSerialNumber = 0x0000  <no string>
  bNumConfigurations = 0x0001


Code:
cat /boot/loader.conf

# Userland character device library
cuse_load="YES

Code:
> cat /etc/rc.conf

# daemon which provide access to USB webcam, USB DVB, USB radio, USB input, USB tablet and more devices
webcamd_enable="YES"

Code:
> webcamd
Available device(s):
Show webcamd usage:
webcamd -h
webcamd: No USB device match found

User is added to webcamd group
 
Thanks, I got it work.


# service devd restart && webcamd -d ugen7.4 -v 0
Stopping devd.
Waiting for PIDS: 456.
Starting devd.
webcamd: Could not open /dev/cuse. Did you kldload cuse4bsd?



# kldload cuse4bsd



# service devd restart && webcamd -d ugen7.4 -v 0
Stopping devd.
Waiting for PIDS: 894.
Starting devd.
Attached to ugen7.4[0]
Creating /dev/video0
Creating /dev/video1


Changed from /boot/loader.conf cuse_load="YES" to cuse4bsd_load="YES".
 
Back
Top