Search found 2902 matches

by iconnor
Fri Oct 07, 2022 8:11 pm
Forum: ZoneMinder 1.36.x
Topic: Released 1.36.27, 1.36.28 The Memory Remains
Replies: 21
Views: 275808

Re: Released 1.36.27, 1.36.28 The Memory Remains

1.36.28 quickly released to fix issues with .27
by iconnor
Fri Oct 07, 2022 3:20 pm
Forum: ZoneMinder 1.36.x
Topic: Get latest Frame (jpg) from camera?
Replies: 9
Views: 1739

Re: Get latest Frame (jpg) from camera?

Sorry I typod. It should be mode=single not mode-single. mode=jpeg is mjpeg mode=single is a single jpg.
by iconnor
Fri Oct 07, 2022 3:17 pm
Forum: ZoneMinder 1.36.x
Topic: Released 1.36.27, 1.36.28 The Memory Remains
Replies: 21
Views: 275808

Released 1.36.27, 1.36.28 The Memory Remains

#Changes since 1.36.26 - Use zm_setcookie, which will automatically set samesite on the session cookie. Maybe fixes #3517 - commit to free up locks when there is an error doing MoveTo (like does not exist on disk). Also remove commit from CopyTo which does no transactions/locking. - Use y instead of...
by iconnor
Fri Oct 07, 2022 1:46 pm
Forum: Hardware Queries
Topic: List of cameras used
Replies: 2
Views: 663

Re: List of cameras used

Exactly. At best we can infer manufacturer from the rtsp url.
by iconnor
Fri Oct 07, 2022 1:43 pm
Forum: ZoneMinder 1.36.x
Topic: Get latest Frame (jpg) from camera?
Replies: 9
Views: 1739

Re: Get latest Frame (jpg) from camera?

If you look at the console with thumbnails, that is an example of how to get the latest jpeg. The gist of it is http://hostname/zm/cgi-bin/nph-zms?mode-single&monitor=1 You can add scale= or width= etc. You will likely also need to add authentication if you have auth turned on. So user=&pass...
by iconnor
Thu Oct 06, 2022 1:30 pm
Forum: ZoneMinder 1.36.x
Topic: Monitor shm not connected
Replies: 11
Views: 2929

Re: Monitor shm not connected

How about an updated debug log for that.

The message implies writing too long of a string somewhere... buffer overflow type of thing.
by iconnor
Thu Oct 06, 2022 1:26 pm
Forum: Mobile Apps and Event Server
Topic: Why is ZMES skipping Events !Solved!
Replies: 18
Views: 39373

Re: Why is ZMES skipping Events !Solved!

If anyone would like to try out the fix early, please use the proposed ppa. You should get something reporting as 1.36.27.
by iconnor
Thu Oct 06, 2022 1:24 pm
Forum: Mobile Apps and Event Server
Topic: Why is ZMES skipping Events !Solved!
Replies: 18
Views: 39373

Re: Why is ZMES skipping Events !Solved!

This is kindof a big problem. Used to be that STATE_UNKNOWN was -1. This is a problem, because I wanted to use the value to index into an array of strings to print out the state. So Unknown became 0. The problem is I did this in the middle of a stable series. Bad me. So in 1.36.26, in terms of the A...
by iconnor
Thu Oct 06, 2022 1:10 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: Features in 1.37
Replies: 5
Views: 25886

Re: Features in 1.37

Big deal no. Hours of work yes.

Having lots of options makes for lots of code and complexity.

Who is paying for it?

I think a better way to go would be a simpler way to do CSS overrides with a little documentation so you could just add
.Montage .Monitor .state {
display: none;
}
by iconnor
Thu Oct 06, 2022 1:07 pm
Forum: Website Issues
Topic: Images missing on zoneminder wiki
Replies: 1
Views: 7600

Re: Images missing on zoneminder wiki

Fixed! Thanks for the heads up.
by iconnor
Wed Oct 05, 2022 1:40 pm
Forum: ZoneMinder 1.36.x
Topic: High CPU load
Replies: 5
Views: 354

Re: High CPU load

It should still work. Check your logs.
by iconnor
Wed Oct 05, 2022 11:25 am
Forum: ZoneMinder 1.36.x
Topic: High CPU load
Replies: 5
Views: 354

Re: High CPU load

Turn off storing jpegs. That takes a lot of cpu on a high res stream.
by iconnor
Wed Oct 05, 2022 11:03 am
Forum: ZoneMinder 1.36.x
Topic: Raspi4 1.34.x -> 1.36.x
Replies: 2
Views: 217

Re: Raspi4 1.34.x -> 1.36.x

https://zmrepo.zoneminder.com

Although I don't think we build 64bit yet... I really should get around to that.

You can always build your own package though...
by iconnor
Wed Oct 05, 2022 11:01 am
Forum: ZoneMinder 1.36.x
Topic: Skin ugly when accessing from URL
Replies: 2
Views: 211

Re: Skin ugly when accessing from URL

Actually it looks like it is just choosing classic css instead of base css.

The skin is stored in a cookie, so changes depending on url. Just go Opions->Display and play around with the two options. skin=classic, css=base is the default nicer looking style.
by iconnor
Tue Oct 04, 2022 9:21 pm
Forum: ZoneMinder 1.36.x
Topic: Monitor shm not connected
Replies: 11
Views: 2929

Re: Monitor shm not connected

Looks like you are allocating 50 ImageBuffers. This is no longer necessary. Change ImageBuffers to 3 or 5 or something like that. Set MaxImageBuffers to whatever ImageBuffers was, or even more. It will only use them if needed.