Ubuntu 18.04 摄像头的网络摄像头已打开,但出现相反的情况

Ubuntu 18.04 摄像头的网络摄像头已打开,但出现相反的情况
(cheese:2126): cheese-WARNING **: 10:52:37.465: A lot of buffers are being dropped.: gstbasesink.c(2902): gst_base_sink_is_too_late (): /GstCameraBin:camerabin/GstViewfinderBin:vf-bin/ClutterGstVideoSink:cluttergstvideosink0:

可能存在时间戳问题,或者这台计算机太慢。对此有什么解决方案?

答案1

使用命令行中的“nodrop = 1”选项对我有用:

cheese uvcvideo nodrop=1 

如果这不起作用,那么您可以尝试在 uvc 内核模块中启用相同的选项,如下所示:

将以下内容添加到 /etc/modprobe.d/uvcvideo.conf:

options uvcvideo nodrop=1

添加该行后,重新加载模块:

sudo rmmod uvcvideo && sudo modprobe uvcvideo

参考:

  1. https://bbs.archlinux.org/viewtopic.php?id=223106
  2. https://help.ubuntu.com/community/UVC

相关内容