Search found 63 matches
- Mon Feb 17, 2020 2:29 am
- Forum: User Contributions
- Topic: Instant notification on alarm + machine learning object detection
- Replies: 28
- Views: 31576
Re: Instant notification on alarm + machine learning object detection
@linuxhak, Definitely don't worry about stealing anyone's thunder (certainly not mine). I agree it would be best for this to be a core ZoneMinder functionality, specifically because then there would be no need for polling. However, my Web/DB programming experience is pretty limited, and I don't have...
- Thu Nov 07, 2019 6:11 pm
- Forum: Feature Requests
- Topic: Time dependent zones
- Replies: 6
- Views: 8245
Re: Time dependent zones
The way I have solved this problem is to make duplicated monitors with the same zones, but different settings on the zones. I switch the active monitors based on sunrise and sunset using sunwait ( https://sourceforge.net/projects/sunwait4windows/ ). It's kind of a pain to set it up this way, but on...
- Wed Oct 02, 2019 3:26 pm
- Forum: Feature Requests
- Topic: Time dependent zones
- Replies: 6
- Views: 8245
Re: Time dependent zones
The way I have solved this problem is to make duplicated monitors with the same zones, but different settings on the zones. I switch the active monitors based on sunrise and sunset using sunwait ( https://sourceforge.net/projects/sunwait4windows/ ). It's kind of a pain to set it up this way, but onc...
- Sat Jul 13, 2019 2:53 am
- Forum: User Contributions
- Topic: Instant notification on alarm + machine learning object detection
- Replies: 28
- Views: 31576
Re: Instant notification on alarm + machine learning object detection
Well, I'm not really sure what's going on with Mutt for you then. Is there anything in your mail logs? (I'm not sure where that is for systems with systemd; I'm guessing in journalctl. On my system /var/log/maillog keeps track of emails that failed to send.) Since you are not sending image attachmen...
- Thu Jul 11, 2019 3:38 pm
- Forum: User Contributions
- Topic: Instant notification on alarm + machine learning object detection
- Replies: 28
- Views: 31576
Re: Instant notification on alarm + machine learning object detection
It looks like an error with mutt. Googling the error message turns up some hits ( https://www.google.com/search?q=mutt+error+sending+message+127 ), but I'm not sure if they are helpful. I would recommend taking a look and see if anything seems relevant to your situation. When you sent a test message...
- Wed Mar 20, 2019 12:30 pm
- Forum: ZoneMinder 1.32.x
- Topic: Suitable hardware ?
- Replies: 2
- Views: 1681
Re: Suitable hardware ?
I use one of these with four cameras, and it works well: https://www.zotac.com/us/product/mini_pcs/zbox-bi325 It's not particularly fast, but it does the job. I think it could scale to 6 cameras with no issues as long as you don't try to run at a high framerate and resolution. My 4 cameras are each ...
- Mon Mar 18, 2019 12:37 pm
- Forum: User Contributions
- Topic: Instant notification on alarm + machine learning object detection
- Replies: 28
- Views: 31576
Re: Instant notification on alarm + machine learning object detection
I would like for it to be a maintained part of Zoneminder which could be enabled or disabled as desired. In many installs, I believe that the Zoneminder motion detection works well enough on its own, but in other situations (such as outside) it works not so well and this add-on would dramatically i...
- Fri Mar 01, 2019 3:42 pm
- Forum: User Contributions
- Topic: Instant notification on alarm + machine learning object detection
- Replies: 28
- Views: 31576
Re: Instant notification on alarm + machine learning object detection
Sure, I'd be honored! What did you have in mind, though, integrating it into ZoneMinder itself in some way, or as a separate script the way it is now?
- Thu Feb 28, 2019 3:44 am
- Forum: User Contributions
- Topic: Instant notification on alarm + machine learning object detection
- Replies: 28
- Views: 31576
Re: Instant notification on alarm + machine learning object detection
I added an option called notify_incomplete_events. If set to yes, it will send notifications for events that have not completed yet, so that you can be alerted as soon as possible. This is beneficial if you tend to have long-running events, or just don't want to waste those few seconds while an even...
- Wed Feb 27, 2019 4:20 pm
- Forum: User Contributions
- Topic: Instant notification on alarm + machine learning object detection
- Replies: 28
- Views: 31576
Re: Instant notification on alarm
I am looking at your zoneminder-notifier. I would like very much to implement it on my ZM install. I have a some questions.... 1 - The readme says "ZoneMinder with API enabled (tested with 1.32.3)" is required. Does your code use any of the API that is not available in older versions such as 1.30.x...
- Mon Feb 11, 2019 5:01 pm
- Forum: ZoneMinder 1.32.x
- Topic: Video not recorded
- Replies: 7
- Views: 10878
Re: Video not recorded
I really don't see how that patch could have any effect, as the value of staticConfig.video_file_format is '%s/%s' Or at least it is supposed to be. I don't see how it could be anything else. Somehow though it would have to be in order for the code to give the errors you have posted. I don't unders...
- Fri Feb 01, 2019 4:55 am
- Forum: User Contributions
- Topic: Instant notification on alarm + machine learning object detection
- Replies: 28
- Views: 31576
Re: Instant notification on alarm
I have ditched my perl script and switched to a Python script that uses the API. Inspired by asker's zmeventserver, I have also added object detection with OpenCV + YOLO v3 to eliminate false notifications, which is working really well. This method also has the benefit of not reading the shared memo...
- Fri Feb 01, 2019 4:49 am
- Forum: Feature Requests
- Topic: Machine learning video detection
- Replies: 10
- Views: 13742
Re: Machine learning video detection
I have implemented something similar to asker in my own notification daemon. It uses the API and polls for new events at a user-specified frequency (by default, 3 seconds). When ZoneMinder is not running, it checks (by default) every 15 seconds to see if it has started up. If using object detection,...
- Wed Jan 23, 2019 8:42 pm
- Forum: ZoneMinder 1.32.x
- Topic: no valid mp4s created
- Replies: 16
- Views: 8008
Re: no valid mp4s created
I think it's different, because in my case no mp4 files were being written at all, and errors were showing up in the logs. But it could possibly be something similar, I guess.pingcam wrote: ↑Wed Jan 23, 2019 3:33 pm@abi can this be related?
viewtopic.php?f=38&t=27927#p109118
- Tue Jan 22, 2019 4:22 am
- Forum: ZoneMinder 1.32.x
- Topic: Video not recorded
- Replies: 7
- Views: 10878
Re: Video not recorded
I got the video working. I had to add the following patch. Apparently staticConfig.video_file_format was not getting set properly for me, and I have no idea why, since it seems to be working everywhere else. Should I file as an issue on Github? --- src/zm_event.cpp 2019-01-21 23:17:19.881961455 -050...