1

在我的树莓派上,我安装了 ffmpeg。一开始我输入

uv4l --driver raspicam --auto-video_nr --width 640 --height 480 --encoding jpeg

运行驱动程序。然后我检查 devoce0 是否已注册:

ls -la /dev/video*

它返回 video0 以便它被注册。然后我输入命令来运行服务器:

ffmpeg -v verbose -r 5 -s 640x480 -f video4linux2 -i /dev/video0 http://localhost/webcam.ffm

并且相机亮了一会儿然后关闭,我得到如下错误:

[video4linux2, v4l2] mmap: No such device /dev/video0: No such device

我应该怎么做才能解决它?这些库之一看起来像内部错误。

此命令有效:

uv4l --driver raspicam --auto-video_nr --encoding h264 --width 640 --height 480 --enable-server on
4

1 回答 1

3

尝试在文件底部添加以下行/etc/modules并重新启动您的 Raspberry Pi。

bcm2835-v4l2

我的现在看起来像这样

# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.

bcm2835-v4l2

这可确保在所有后续重新启动时加载Broadcom Video For Linux 2 (v4l2) 驱动程序。

于 2018-01-02T17:16:04.467 回答