Search found 390 matches

by burger
Tue Mar 26, 2024 7:43 pm
Forum: ZoneMinder 1.36.x
Topic: CONSIDER IT SOLVED: Unable to connect to Reolink D820A cameras
Replies: 15
Views: 423

Re: Unable to connect to Reolink D820A cameras

With some models of Reolink cameras, people have reported that it's necessary to enable RTSP on the web interface to get them to start the RTSP server on port 554. For example, I searched the forum and this came up: https://forums.zoneminder.com/viewtopic.php?p=131898&hilit=reolink+enable+rtsp#p...
by burger
Sat Mar 23, 2024 11:50 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: Trying to setup a docker test env.
Replies: 3
Views: 261

Re: Trying to setup a docker test env.

Seems the Dockerfile is missing. Found zmdockerfiles https://github.com/ZoneMinder/zmdockerfiles/blob/master/buildsystem/ubuntu/impish/Dockerfile With the following result : ~/dev/zoneminder$ docker build -t linuxlover9/zm-1.36.33-chk . [+] Building 4.1s (7/10) docker:default => [internal] load bui...
by burger
Thu Mar 21, 2024 4:19 pm
Forum: ZoneMinder 1.36.x
Topic: CONSIDER IT SOLVED: Unable to connect to Reolink D820A cameras
Replies: 15
Views: 423

Re: Best way to set up server for Zoneminder??

Camera selection is important. What make / model cameras are you going to be using?
by burger
Sat Mar 16, 2024 2:45 pm
Forum: ZoneMinder 1.36.x
Topic: VM ZM not loading host's browser localhost/zm/?
Replies: 14
Views: 377

Re: VM ZM not loading host's browser localhost/zm/?

linuxmint@linuxmint:/etc/apache2/conf-available$ cat zoneminder.conf # Remember to enable cgi mod (i.e. "a2enmod cgi"). ScriptAlias /zm/cgi-bin "/usr/lib/zoneminder/cgi-bin" <Directory "/usr/lib/zoneminder/cgi-bin"> Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Al...
by burger
Sun Feb 25, 2024 7:27 pm
Forum: Non-ZoneMinder Chat
Topic: Zoneminder setup Vs Wyze cameras
Replies: 1
Views: 1013

Re: Zoneminder setup Vs Wyze cameras

The general problem with running camera solutions like Wyze, or whatnot, is it may not be future proof. It's also closed source software. You depend upon their servers for either the app or the videos, and if they discontinue the service then you have useless equipment. If you get at least an ONVIF ...
by burger
Wed Feb 21, 2024 1:58 am
Forum: Hardware Queries
Topic: PC recommendations
Replies: 11
Views: 1522

Re: PC recommendations

I run Dell Poweredge rack servers, the R700 series. There are a couple gens you can go for depending on budget. The R720 is like $250+ for used w/ 24 cores, and I run that with around 30 cameras, doing ZMES on some of them. Record on all of them. Get newer gen if the budget affords it. Ebay is flood...
by burger
Tue Feb 20, 2024 6:22 pm
Forum: ZoneMinder 1.36.x
Topic: Can I Stream ZM video?
Replies: 7
Views: 2100

Re: Can I Stream ZM video?

I'm referring to the instructions for getting a token, which are from: https://zoneminder.readthedocs.io/en/stable/api.html What needs to be done is some work on setting up a proper proxy or rewrite so that you can put these streams on an internet website without the token being exposed. I haven't n...
by burger
Tue Feb 20, 2024 2:47 am
Forum: ZoneMinder 1.36.x
Topic: Can I Stream ZM video?
Replies: 7
Views: 2100

Re: Can I Stream ZM video?

No worries, ask away. I put that together although it is adapted from the official docs (with some changes).
by burger
Mon Feb 19, 2024 9:48 pm
Forum: ZoneMinder 1.36.x
Topic: Can I Stream ZM video?
Replies: 7
Views: 2100

Re: Can I Stream ZM video?

See: https://wiki.zoneminder.com/External_Live_Stream for one way to do this.

The API method is recommended for security purposes. I'd say if it's a public webpage you might want to proxy it,, and or rewrite the URL to hide any token.
by burger
Thu Feb 15, 2024 3:55 am
Forum: ZoneMinder 1.36.x
Topic: Database Cleanup?
Replies: 5
Views: 385

Re: Database Cleanup?

This was recently talked about. The zm.Event_Summaries table is the one that has the data that shows on the website. When backing up only the config, it is ignored see: https://wiki.zoneminder.com/MySQL#Backup_config_only and that starts the numbers back at zero. I think in your case clearing the ta...
by burger
Wed Feb 07, 2024 5:48 pm
Forum: ZoneMinder 1.36.x
Topic: ZM settings for recording motions from a Raspberry Pi NoIR filter camera stream
Replies: 2
Views: 996

Re: ZM settings for recording motions from a Raspberry Pi NoIR filter camera stream

You didn't mention your zone settings. Those matter the most. Zones is the last option on the console page. Farthest to the right. See: https://wiki.zoneminder.com/Dummies_Guide#Example_Zone I uploaded an example image with settings that will not miss motion. They will however, generate false events...
by burger
Fri Jan 19, 2024 4:28 pm
Forum: ZoneMinder 1.36.x
Topic: Sending email on events
Replies: 1
Views: 570

Re: Sending email on events

From https://wiki.zoneminder.com/Filters Try adding the end date/time greater than or equal to -1 minute AND If you don't have a date/time parameter in there, it might try to email details of all events. Or it used to, and I forget, but it's possible there was a check put in place to stop that from ...
by burger
Wed Jan 17, 2024 5:39 pm
Forum: ZoneMinder 1.34.x
Topic: Any idea?
Replies: 3
Views: 1387

Re: Any idea?

by burger
Tue Jan 16, 2024 3:45 pm
Forum: ZoneMinder 1.34.x
Topic: Setting Archived Variable in Python?
Replies: 1
Views: 14283

Re: Setting Archived Variable in Python?

The API has the index function, and the search function. See: https://github.com/ZoneMinder/zoneminder/blob/master/web/api/app/Controller/EventsController.ph To do this with index, you would use: curl -X POST -d "user=username&pass=password" http://localhost/zm/api/events/index/Archive...