This is a basic key-function that you should just expect. I bought the camera to replace my old Axis webcam, and i want to use it for a weather-cam.
Unfortunately i wasn't able to find a solution with the integrated OS of the camera. After a few tests, i now solve it with my existing Synology NAS and get the picture from the jpeg.cgi http link (profile 2) and upload it after with a FTP-client.
So i wrote a small shell script which i run every 5 minutes via cron job.
Here the script, maybe someone can use it:
In this case the script is located in /volume1/Public/snapshot.sh
#!/bin/sh
#get image from camera and save as snap.jpg
wget --user=admin --password=yourpassword -O /volume1/Public/snap.jpg http://ip-of-camera/dms.jpg
#wait for 1 second
sleep 1
#upload image to ftp-Server to specific directory
/opt/bin/lftp -e 'put /volume1/Public/snap.jpg' -u ftpuser,ftppassword ftpserver/httpdocs/webcam/ <<EOF
quit 0
EOF
Of course you can change the desired directories. You need to chmod the script to 755 (executable).
There is no FTP client installed on Synology NAS that can be used from a interactive shell. You can install lftp, using ipkg. ->
InstructionI'm not familiar with linux (i hate it...), and i had to google a lot, to get the stuff running... If you need more infos, just let me know.