博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
树莓派安装摄像头 C110 motion
阅读量:5135 次
发布时间:2019-06-13

本文共 1413 字,大约阅读时间需要 4 分钟。

### 1.修改成国内的软件源,否则会失败或下载太慢
sudo vi /etc/apt/sources.list
deb http://mirrors.aliyun.com/raspbian/raspbian/ wheezy main non-free contrib
deb-src http://mirrors.aliyun.com/raspbian/raspbian/ wheezy main non-free contrib

### 2.更新系统软件 并 更新已安装的包
sudo -

apt-get update -y   ### 这步要先操作,否则会找不到motion

apt-get upgrade -y  ### 有时间再操作,这个升级会花很长的时间

### 开 motion daemon 守护进程,让它可以一直在后台运行

sudo vi /etc/default/motion
start_motion_daemon=yes

### 4.修改motion的配置文件       C110参数下方的数据设置,否则无法打开摄像头

sudo vi /etc/motion/motion.conf
#deamon off 改成 on
deamon on
#设置分辨率
width 800
height 600
#关闭 localhost 的限制
webcam_localhost off

### 5.运行 motion:
sudo motion

http://pingbin.com/2012/12/raspberry-pi-web-cam-server-motion/

For me it up running fine, i am using Logitech Webcam C110

Below is my configuration
daemon=on
norm=3
input=8
auto_brightness=on
framerate=300
height=640width=480
jpeg_filename=motion/%Y%m%d/%v-%H%M%S-%q
noise_tune=on
output_all=off
output_motion=on
output_normal=on
quality=1000
snapshot_interval=500
target_dir=/home/pi/motion
text_left=(c) Nestcam
text_right=%d %b %Y\n%k:%M:%S
threshold=500
v4l2_palette=6
videodevice=/dev/video0
webcam_localhost=off
webcam_maxrate=50
webcam_port=8080
wecam_quality=100

 

引用:

http://shumeipai.nxez.com/2016/09/01/raspberry-pi-motion-cameras-for-remote-monitoring.html#more-2579

http://pingbin.com/2012/12/raspberry-pi-web-cam-server-motion/

转载于:https://www.cnblogs.com/chenzechao/p/5839705.html

你可能感兴趣的文章
【JS】jQuery设置定时器,访问服务器(PHP示例)配合微信、支付宝原生支付,跳转web网页...
查看>>
实验四2
查看>>
VS2012+Win7网站发布详细步骤
查看>>
Android现学现用第十一天
查看>>
Bin Packing 装箱问题——NPH问题的暴力枚举 状压DP
查看>>
多路复用
查看>>
python 列表
查看>>
Python数据可视化之Pygal(雷达图)
查看>>
Django组件--cookie与session
查看>>
12. javacript高级程序设计-DOM2和DOM3
查看>>
Centos7安装vsftpd (FTP服务器)
查看>>
当前主流读取Excel技术对比
查看>>
js-格式化数字保留两位小数-带千分符
查看>>
【Java】forward & redirect 的差异
查看>>
Java学习笔记--字符串和文件IO
查看>>
【BZOJ1951】古代猪文(CRT,卢卡斯定理)
查看>>
poj 2823 线段树
查看>>
转 Silverlight开发历程—(画刷与着色之线性渐变画刷)
查看>>
SQL语法(3)
查看>>
在js在添版本号
查看>>