Webcam

Post Reply
wifi75
Observer
Observer
Posts: 22
Joined: Thu Apr 09, 2020 4:58 pm
Station model: GW1000

Webcam

Post by wifi75 » Sat Apr 11, 2020 3:05 pm

Hello to all, I want insert camer pictures from my ip camera, I have a Dahua room,
I have already installed the plugin and the webcam block but it is not clear to me how to see the snapshots.
I tried to save the snapshots on my nas and it works, the camera saves the images, but creates folders for per minute ...
could someone help me?

the camera saves a snapshot every 7 seconds, but I can change it ... look at the attachment
1.PNG
1.PNG (76.24 KiB) Viewed 4586 times
2.PNG
2.PNG (47.83 KiB) Viewed 4586 times

proger
Observer
Observer
Posts: 35
Joined: Tue Jan 16, 2018 4:52 pm
Location: Norway
Station model: davis vantage vue
Software: Meteobridge
Contact:

Re: Webcam

Post by proger » Mon Apr 13, 2020 5:41 pm

My webcam ftp to website to a folder called webcamphoto/snap every 2 minutes
then you have to run a cronjob to rename the photofile with a rename script

my script look like this

<?php
$fileList = glob('*.jpg');
var_dump($fileList);
foreach (glob("FI9900EP_00626E6F8B2B/snap/*.jpg") as $filename) {
echo "Renaming " . $filename . " now.</br>";
if(file_exists($filename)) {
rename($filename, "webcam2" . ".jpg");
echo $filename . " is now webcam2" . ".jpg</br>";
}
}

I run the cronjob from cron-job.org every 2 minutes
Image

wifi75
Observer
Observer
Posts: 22
Joined: Thu Apr 09, 2020 4:58 pm
Station model: GW1000

Re: Webcam

Post by wifi75 » Mon Apr 13, 2020 5:55 pm

the situation is different from me, my room creates folders for me and there is no way to remove the folders!
how can I do?

proger
Observer
Observer
Posts: 35
Joined: Tue Jan 16, 2018 4:52 pm
Location: Norway
Station model: davis vantage vue
Software: Meteobridge
Contact:

Re: Webcam

Post by proger » Mon Apr 13, 2020 7:17 pm

I am no familiar with that camera. But you have to find a solution to upload photofiles from camera to website and then rename photofile with the rename script
Image

Post Reply