目录
1、配置前的准备
2、motion的安装与配置
3、更改参数,使画面更加流畅
4、开启或者关闭motion服务(修改/配置参数时需要关闭motion)
1、配置前的准备
硬件: 采用树莓派4B,USB摄像头
软件: motion
2、motion的安装与配置
sudo apt install motion
打开 /etc/default/motion将no改为yes,让它一直运行
sudo vim /etc/default/motion#no修改成yes:start_motion_daemon=yes
打开 /etc/motion/motion.conf 修改motion配置
sudo vim /etc/motion/motion.conf#deamon off 改成 ondeamon on# 设置分辨率width 640height 480# 关闭 localhost 的限制webcam_localhost off# 允许通过网页查看摄像头stream_localhost off
更改完就可以启动摄像头了,ip为树莓派的ip地址,端口为8081
sudo motion
3、更改参数,使画面更加流畅
framerate 50 #这个代表帧率,50左右效果还行,可根据效果自行更改stream_maxrate 70 #这个参数设置为 100 或者小点的(可以自行观察后配置)
4、开启或者关闭motion服务(修改/配置参数时需要关闭motion)
sudo systemctl stop motion // 关闭motionsudo systemctl start motion //打开motionsudo systemctl restart motion //重启motion