Raspberry Pi ffmpeg video4linux2, v4l2 mmap 没有这样的设备
Raspberry Pi ffmpeg video4linux2, v4l2 mmap no such device
在我的 Raspberry pi 上,我安装了 ffmpeg。一开始我输入
uv4l --driver raspicam --auto-video_nr --width 640 --height 480 --encoding jpeg
到运行driver。然后我检查 devoce0 是否已注册:
ls -la /dev/video*
它 returns video0 所以它被注册了。然后我输入命令 运行 server:
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
尝试在文件底部添加以下行 /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) 驱动程序在所有后续重新启动时加载。
在我的 Raspberry pi 上,我安装了 ffmpeg。一开始我输入
uv4l --driver raspicam --auto-video_nr --width 640 --height 480 --encoding jpeg
到运行driver。然后我检查 devoce0 是否已注册:
ls -la /dev/video*
它 returns video0 所以它被注册了。然后我输入命令 运行 server:
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
尝试在文件底部添加以下行 /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) 驱动程序在所有后续重新启动时加载。