webcam plugin again
Posted: Tue Apr 26, 2022 7:56 am
Hi all
I'd like this setting:
Only record during the day (do not save image between one hour after sunset and one hour before sunrise) to be TWO hours before and after subset.
So I looked at the update Webcam.php and found this:
Line 48:
$sunRiseTimestamp = strtotime(date("Y")."-".date('m')."-".date('d')." ".$sunRiseTodayHours) - (60*60); // subtract one hour to start recording before sunrise
$sunSetTimestamp = strtotime(date("Y")."-".date('m')."-".date('d')." ".$sunSetTodayHours) + (60*60); // add one hour to stop recording after sun set
changing these to 120*120 did not work.
What did I miss?
thx for any help, Martin
I'd like this setting:
Only record during the day (do not save image between one hour after sunset and one hour before sunrise) to be TWO hours before and after subset.
So I looked at the update Webcam.php and found this:
Line 48:
$sunRiseTimestamp = strtotime(date("Y")."-".date('m')."-".date('d')." ".$sunRiseTodayHours) - (60*60); // subtract one hour to start recording before sunrise
$sunSetTimestamp = strtotime(date("Y")."-".date('m')."-".date('d')." ".$sunSetTodayHours) + (60*60); // add one hour to stop recording after sun set
changing these to 120*120 did not work.
What did I miss?
thx for any help, Martin