I've installed motion mmal on Raspberry Pi and its recording video whenever I run startmotion script:
#!/bin/sh
nohup /home/pi/mmal/motion -n -c /home/pi/mmal/motion-mmalcam.conf 1>/dev/null 2>&1 </dev/null &
However, Its making continuous video until I stop motion.
I want to make a video of 5 minute after every 10 minutes. I tried the timeout command:
#!/bin/sh
timeout 5m nohup /home/pi/mmal/motion -n -c /home/pi/mmal/motion-mmalcam.conf 1>/dev/null 2>&1 </dev/null &
I was able to run script after every 1 hour by using this code:
0 * * * * nohup /home/pi/mmal/motion -n -c /home/pi/mmal/motion- mmalcam.conf 1>/dev/null 2>&1 </dev/null &
5 * * * * pkill -9 motion
How can I run this script after every 10 minutes?