Site Tools


hardwarerelated:logitech_streamcam

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
hardwarerelated:logitech_streamcam [2021/02/03 12:21] chrishardwarerelated:logitech_streamcam [2022/11/13 12:06] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +===== Logitech/Logicool StreamCam C980GR =====
 +  * Logitech is marketed as Logicool in Japan, that's also written on the package
 +  * This webcam is not cheap, but does 1080p@60Hz
 +  * No hacks required, plug & play on Fedora33 and later :)
 +  * power consumption: 5V/0.3A, independent of resolution and framerate
 +  * The webcam includes a microphone, which is quite ok, better than the buildin ones of Thinkpads
 +  * lsusb: 046d:0893 Logitech, Inc. Logitech StreamCam
  
 +<code>
 +sudo dnf -y install v4l-utils
 +[chris@電脳 ~]$ v4l2-ctl --list-devices
 +Logitech StreamCam (usb-0000:00:14.0-3):
 +        /dev/video2
 +        /dev/video3
 +        /dev/media1
 +
 +Integrated Camera: Integrated C (usb-0000:00:14.0-7):
 +        /dev/video0
 +        /dev/video1
 +        /dev/media0
 +
 +[chris@電脳 ~]$ 
 +[chris@電脳 ~]$ v4l2-ctl --all -d /dev/video2 
 +Driver Info:
 +        Driver name      : uvcvideo
 +        Card type        : Logitech StreamCam
 +[..]
 +
 +# testing 720p
 +mplayer tv:// -tv driver=v4l2:device=/dev/video2:width=1280:height=720:fps=60:outfmt=yuy2
 +
 +# 1080p
 +mplayer tv:// -tv driver=v4l2:device=/dev/video2:width=1920:height=1080:fps=60:outfmt=yuy2
 +</code>