Search found 678 matches

by mastertheknife
Wed Nov 06, 2013 6:12 am
Forum: ZoneMinder 1.26.x
Topic: Zoneminder with 50 ip cams?
Replies: 9
Views: 3978

Re: Zoneminder with 50 ip cams?

I am working on adding a way to maintain fps for source types that we can't control the stream speed (IP cameras), but it might take some time. For source types that we are the ones initiating the capture (e.g. USB and analog cameras), we are the ones controlling the fps because we are capturing onl...
by mastertheknife
Tue Nov 05, 2013 10:27 am
Forum: ZoneMinder 1.26.x
Topic: Triggering alarm on relatively fast events only
Replies: 6
Views: 3255

Re: Triggering alarm on relatively fast events only

Try setting it to 50% during alarm, it will make the event last only 1-2 frames.
by mastertheknife
Tue Nov 05, 2013 5:54 am
Forum: ZoneMinder 1.26.x
Topic: Zoneminder with 50 ip cams?
Replies: 9
Views: 3978

Re: Zoneminder with 50 ip cams?

ZoneMinder 1.26.X includes lots of performance improvements that i wrote.
depending on your fps, i believe it can be done.

mastertheknife
by mastertheknife
Tue Nov 05, 2013 5:51 am
Forum: ZoneMinder 1.26.x
Topic: Triggering alarm on relatively fast events only
Replies: 6
Views: 3255

Re: Triggering alarm on relatively fast events only

Hi,

Would a different blend percent during alarm help? It should make the events last a lot shorter, like this:

Image

I have been working on adding this feature to ZM, and it should be included in ZM 1.26.5
See it here: https://github.com/ZoneMinder/ZoneMinder/pull/241
by mastertheknife
Fri Nov 01, 2013 10:27 am
Forum: ZoneMinder 1.25.x
Topic: ubnt aircam snapshot.cgi =>Found bogus jpeg header '3130'
Replies: 6
Views: 3827

Re: ubnt aircam snapshot.cgi =>Found bogus jpeg header '3130

You guessed right. ZoneMinder does not support chunked encoding.
by mastertheknife
Tue Oct 29, 2013 6:08 pm
Forum: ZoneMinder 1.25.x
Topic: Modetect never finishes
Replies: 5
Views: 10450

Re: Modetect never finishes

This issue does not need any fixing, it's already fixed in 1.26.x
The code in 1.26.x simply ignores linking a monitor to itself.
by mastertheknife
Tue Oct 29, 2013 8:26 am
Forum: ZoneMinder 1.26.x
Topic: Advantages of 1.26.x over 1.25.x ?
Replies: 2
Views: 1757

Re: Advantages of 1.26.x over 1.25.x ?

Lots of bug fixes and performance improvements to the motion detection.

mastertheknife
by mastertheknife
Mon Oct 28, 2013 8:59 am
Forum: ZoneMinder 1.25.x
Topic: ubnt aircam snapshot.cgi =>Found bogus jpeg header '3130'
Replies: 6
Views: 3827

Re: ubnt aircam snapshot.cgi =>Found bogus jpeg header '3130

In ZM options, switch from http/1.1 to http/1.0 and see if that helps.
by mastertheknife
Wed Oct 23, 2013 3:48 am
Forum: ZoneMinder 1.26.x
Topic: 1.26.4 Upgrade Failure
Replies: 15
Views: 9148

Re: 1.26.4 Upgrade Failure

I have created a bug report for this in case anyone is interested in more direct communication with the devs:
https://github.com/ZoneMinder/ZoneMinder/issues/221
by mastertheknife
Wed Oct 23, 2013 3:41 am
Forum: ZoneMinder 1.26.x
Topic: 1.26.4 Upgrade Failure
Replies: 15
Views: 9148

Re: 1.26.4 Upgrade Failure

There is no bug report, RTSP issues with ZM are widely known. Problem is, no one of us has the time to diagnose and fix rtsp issues. It might take a while, as most of us are working on ZM in our free time, and we don't have much of it. Anyone that wants to fix this is more than welcome to send patch...
by mastertheknife
Wed Oct 23, 2013 3:32 am
Forum: ZoneMinder 1.26.x
Topic: 1.26.4 Upgrade Failure
Replies: 15
Views: 9148

Re: 1.26.4 Upgrade Failure

The RTSP issues you are experiencing with 1.26.4 were most likely introduced in pull request #174 (improve RTSP):
https://github.com/ZoneMinder/ZoneMinder/pull/174
by mastertheknife
Mon Oct 21, 2013 9:41 am
Forum: ZoneMinder 1.26.x
Topic: Installing ZM 1.26.4 on Ubuntu Desktop 12.04 LTS Make error
Replies: 2
Views: 1785

Re: Installing ZM 1.26.4 on Ubuntu Desktop 12.04 LTS Make er

Very weird. It seems its trying to link zlib from C:/path/to/zlib/zlib.lib

This is definitely a cmake bug related to the FindZLIB.cmake module (/usr/share/cmake/Modules/FindZLIB.cmake)

I will see what can be done, but for now, you can use the autotools way (./configure, make, make install)
by mastertheknife
Sat Oct 12, 2013 2:06 pm
Forum: ZoneMinder 1.26.x
Topic: Problem adding new cameras
Replies: 1
Views: 1388

Re: Problem adding new cameras

Please check the web log. Does it contain a backtrace? If it does, please run the addr2line command displayed after the backtrace. If there is no backtrace, please run this: addr2line -e /path/to/zmc 0x4a8fec Please paste the output here. This is essential for determining where the crash comes from.
by mastertheknife
Fri Oct 11, 2013 2:25 pm
Forum: ZoneMinder 1.26.x
Topic: How can I make sure libjpeg-turbo is being used
Replies: 5
Views: 5358

Re: How can I make sure libjpeg-turbo is being used

You could try ./configure --with-extralibs="/path/to/libjpeg-turbo" That won't work. Need to also use header files from libjpeg-turbo, as they define colorspace extensions that ZM needs for BGR24 and 32bit RGB formats. Need to modify the CPPFLAGS to search for headers in /opt/libjpeg-turb...