Webcam

I have Lenovo T430 . Freebsd 11
How do I enable the webcam.
I think the webcam is Intel.
I am not good yet.
Anybody out there have Lenovo T430?
 
Install multimedia/cuse4bsd-kmod and load the kernel module:
Code:
# pkg install cuse4bsd-kmod
# kldload cuse4bsd
To make it persistent add the following line to your /boot/loader.conf:
Code:
cuse4bsd_load="YES"
Now you can test it by running:
Code:
$ mplayer tv:// -tv device=/dev/video0:driver=v4l2
You'll need to enable V4L (video4linux2) when building mplayer/mplayer2 (I believe it's not enabled by default).
 
Install multimedia/cuse4bsd-kmod and load the kernel module:
Code:
# pkg install cuse4bsd-kmod
# kldload cuse4bsd
To make it persistent add the following line to your /boot/loader.conf:
Code:
cuse4bsd_load="YES"
This is not necessary anymore on FreeBSD 11.0. It comes with the system, so just use cuse_load="YES" in /boot/loader.conf.

You also need to install multimedia/webcamd and set it up. Refer to the message that is printed when you install it.
 
Yo may need to set the right device explicitly. Run:
Code:
# usbconfig list
ugen0.1: <XHCI root HUB 0x8086> at usbus0, cfg=0 md=HOST spd=SUPER (5.0Gbps) pwr=SAVE (0mA)
ugen2.1: <EHCI root HUB Intel> at usbus2, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA)
ugen1.1: <EHCI root HUB Intel> at usbus1, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA)
ugen2.2: <product 0x0024 vendor 0x8087> at usbus2, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA)
ugen1.2: <product 0x0024 vendor 0x8087> at usbus1, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=SAVE (0mA)
ugen1.3: <Integrated Smart Card Reader Lenovo> at usbus1, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON (100mA)
ugen1.4: <Integrated Camera Ricoh Company Ltd.> at usbus1, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON (200mA)
Then add the corresponding flag "-d 1.4" to your /etc/rc.conf
Code:
webcamd_enable="YES"
webcamd_0_flags="-d 1.4 -i 0 -v 0"
[EDIT] fixing a typo in the file name.
 
aragats thanks for keep helping. Still doesnt work i run the #usbconfig list.I have the same one you have but where do i add at /etc/rc.d
Btw I still dont see cuse4 app .
This webcam is build into the system. This is lenovo T430
Thanks
 
Sorry, I mistyped, you should add it in /etc/rc.conf.
I'm on T430. Do you see the actual process running? E.g.:
Code:
$ ps aux | grep webcamd
root       27614   0.0  0.1   43876   9948  -  Is   Fri21       7:10.97 /usr/local/sbin/webcamd -i 0 -d ugen1.4 -B -U
 
aragats
here is the snapshots I have on my lenovo T430. still doesnt work I use 1.4 also not working
 

Attachments

  • snapshot1.png
    snapshot1.png
    14.2 KB · Views: 411
  • snapshot2.png
    snapshot2.png
    37.5 KB · Views: 469
  • snapshot3.png
    snapshot3.png
    15.8 KB · Views: 453
aragats , since you have T430, can you use slim? I can't . using slim it make my login screen split two virtual windows.
but using KDE windows manager i have no problem and using startx is als fine.
Sorry for late responds.
 
Ependi Silalahi , you may try running webcamd manually first:
Code:
# webcamd
Available device(s):
webcamd [-d ugen0.1] -N XHCI-root-HUB-0x8086 -S unknown -M 0
webcamd [-d ugen2.1] -N EHCI-root-HUB-Intel -S unknown -M 0
webcamd [-d ugen1.1] -N EHCI-root-HUB-Intel -S unknown -M 1
webcamd [-d ugen1.2] -N product-0x0024-vendor-0x8087 -S unknown -M 0
webcamd [-d ugen2.2] -N product-0x0024-vendor-0x8087 -S unknown -M 1
webcamd [-d ugen1.3] -N Integrated-Smart-Card-Reader-Lenovo -S unknown -M 0
webcamd [-d ugen1.4] -N product-0x02d5-vendor-0x5986 -S unknown -M 0
Show webcamd usage:
webcamd -h

# webcamd -d ugen1.4
Attached to ugen1.4[0]
Creating /dev/video0
(Regarding slim(1) I'll write you directly or you can create another thread)
 
Back
Top