我刚刚发现运动而且它的效果非常好。我唯一的问题是,我希望它只在夜间活跃,但没有用于调度的参数。
我想我可以写一个程序,通过它的“HTTP API”,但我想知道是否有人已经这样做了,或者是否有其他解决方案。
提前致谢 :)
答案1
对于这个简单的任务,Motion 的 HTTP API 可以直接与 wget 或类似程序一起使用。
直接从常问问题:
0 9 * * * root /usr/bin/lwp-request http://localhost:8080/0/detection/start > /dev/null
0 18 * * * root /usr/bin/lwp-request http://localhost:8080/0/detection/pause > /dev/null
答案2
使用cron
:
crontab -e
然后输入:
DISPLAY=:0.0
0 0 * * * /usr/bin/motion
0 8 * * * /usr/bin/killall motion
我假设您想每天午夜打开“motion”,并且 motion 路径是 /usr/bin/motion:根据您的需要自定义此 crontab,它就可以了。