将运动输出视频保存在 USB 驱动器中

将运动输出视频保存在 USB 驱动器中

我在 Raspberry 中使用 USB 驱动器来存储我的网站。现在我还想保存用 制作的视频motion

我无法保存在与/tmp/motion谷歌搜索不同的文件夹中,我发现我必须向我想要使用的文件夹授予权限。

$ sudo chmod 777 /path/

我在用户目录中尝试过/home/pi,它有效,然后我在 USB 驱动器上尝试了同样的操作。

  • 文件系统 /dev/sda1
  • 尺寸3.6G
  • 二手1.3M
  • 可用3.6G
  • 使用%1%
  • 安装在 /home/pi/usbdrv

$ sudo chmod 777 /home/pi/usbdrv

但没有成功。


一些信息:

所以

$ sudo service motion start

运动开始工作,我可以通过浏览器看到图像,但是一旦网络摄像头尝试保存文件(例如照片),网络摄像头的线程就会崩溃。以同样的方式尝试停止运动

$ sudo service motion stop

我明白了

[....] Stopping motion detection demon: motionNo /usr/bin/motion found running; none killed.
. ok

否则,如果有更多网络摄像头服务仍在运行,直到所有网络摄像头都尝试保存数据。


另一个测试: 如果我尝试,总是从终端:

$ sudo motion

我明白了

[0] Processing thread 0 - config file /etc/motion/motion.conf
[0] Processing config file /etc/motion/thread1.conf
[0] Processing config file /etc/motion/thread2.conf
[0] Motion 3.2.12 Started
[0] Exit motion, cannot create process id file (pid file) /var/run/motion/motion.pid: No such file or directory
[0] Motion going to daemon mode
$

PS:我有两个线程文件,因为我有两个网络摄像头


我的USB:

/dev/sda1 on /home/pi/usbdrv type vfat (rw,nosuid,relatime,sync,uid=1000,gid=1000,fmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors,remount-ro)

更多信息: http://www.raspberrypi.org/forums/viewtopic.php?f=28&t=75136

相关内容