Search found 678 matches

by mastertheknife
Sun Dec 22, 2013 12:43 pm
Forum: ZoneMinder 1.26.x
Topic: Filters not executing
Replies: 6
Views: 4739

Re: Filters not executing

What ZM version?
by mastertheknife
Sun Dec 22, 2013 4:35 am
Forum: ZoneMinder 1.26.x
Topic: Horrible Video Quality
Replies: 11
Views: 7505

Re: Horrible Video Quality

I am seeing interlaced video despite running at 320x240 Hi, You were probably previously capturing using Video 4 Linux 1 (V4L1). When capturing at that resolution, it only captured 1 field (half picture - e.g. only odd or only even lines), so the image was progressive (had no interlacing artifacts)...
by mastertheknife
Sun Dec 22, 2013 4:29 am
Forum: ZoneMinder 1.26.x
Topic: 1.26.5 stuck in Alarm
Replies: 10
Views: 7862

Re: 1.26.5 stuck in Alarm

Hi, Nothing was changed regarding motion detection between 1.26.4 and 1.26.5, however, a new option was added, called "alarm reference blend percentage". Its purpose is to allow fine tuning of how long an alarm lasts. It defaults to 3.125% and is probably the reason your alarms are getting...
by mastertheknife
Sun Dec 22, 2013 4:24 am
Forum: ZoneMinder 1.26.x
Topic: cmake error
Replies: 2
Views: 1805

Re: cmake error

Hi, It seems you are running cmake without specifying the source folder. It should be like this (don't forget the period at the end): cmake -C zm_conf.cmake . After that, make and then sudo make install. You might also need to update the symlinks for the images/ and events/ folder because make insta...
by mastertheknife
Tue Dec 17, 2013 3:08 pm
Forum: ZoneMinder 1.26.x
Topic: ZoneMinder installation on Centos BlueOnyx 5108R
Replies: 7
Views: 3814

Re: ZoneMinder installation on Centos BlueOnyx 5108R

Hi,

On my CentOS 6.4 x86-64 box, the packages are named mysql-devel and openssl-devel.
Install those packages and you should be good to go!
by mastertheknife
Tue Dec 17, 2013 3:02 pm
Forum: ZoneMinder 1.26.x
Topic: ZoneMinder installation on Centos BlueOnyx 5108R
Replies: 7
Views: 3814

Re: ZoneMinder installation on Centos BlueOnyx 5108R

Hi,

You don't need the OpenSSL options, cmake usually finds whatever it needs automatically.
Look for openssl-dev or openssl-devel package.

For mysqlclient, look for libmysqlclient-dev or mysqlclient-dev or libmysqlclient-devel
Its different from distro to another.
by mastertheknife
Tue Dec 17, 2013 2:45 pm
Forum: ZoneMinder 1.25.x
Topic: ZoneMinder does not show camera view in zone editor
Replies: 2
Views: 1932

Re: ZoneMinder does not show camera view in zone editor

Hi, /usr/share/zoneminder/www typically contains static data. The events and images are typically stored in /var/lib/zoneminder/[events,images] DIR_IMAGES is typically pointing to "images" which is a symlink from /usr/share/zoneminder/www/images to /var/lib/zoneminder/images Same goes for ...
by mastertheknife
Tue Dec 17, 2013 2:39 pm
Forum: ZoneMinder 1.26.x
Topic: ZoneMinder installation on Centos BlueOnyx 5108R
Replies: 7
Views: 3814

Re: ZoneMinder installation on Centos BlueOnyx 5108R

Make sure you have the -dev (or -devel) versions for those two.
by mastertheknife
Mon Dec 16, 2013 5:53 pm
Forum: ZoneMinder 1.26.x
Topic: Horrible Video Quality
Replies: 11
Views: 7505

Re: Horrible Video Quality

Hi, i'm trying (again) to locate the source of the problem without luck.

If you can confirm that the issue does not exist in v1.25.0, this will rule out the bttv driver as the source of the problem.
by mastertheknife
Sat Dec 14, 2013 8:31 pm
Forum: ZoneMinder 1.26.x
Topic: ZoneMinder broken when upgrading 1.26.4->1.26.5
Replies: 1
Views: 1831

Re: ZoneMinder broken when upgrading 1.26.4->1.26.5

Hi,

Run this SQL query:

Code: Select all

ALTER TABLE `Monitors` ADD `AlarmRefBlendPerc` TINYINT(3) UNSIGNED NOT NULL DEFAULT '3' AFTER `RefBlendPerc`;
by mastertheknife
Wed Dec 11, 2013 1:08 pm
Forum: ZoneMinder 1.26.x
Topic: How many cams realistically supported by Raspberry Pi?
Replies: 7
Views: 3940

Re: How many cams realistically supported by Raspberry Pi?

I recommend going with an Intel Atom instead. I have the D525MW board, with 4GB ram and 2 hard drives (grouped together in LVM), running CentOS 6.4 64bit. This small, power efficient box can take a lot at it.
by mastertheknife
Tue Dec 10, 2013 1:19 pm
Forum: ZoneMinder 1.25.x
Topic: Failure to Crop Capabilities
Replies: 11
Views: 11127

Re: Failure to Crop Capabilities

Hi,

Thank you for the patch. I have pushed it to our git repository and it will be included in v1.26.5
If you don't want to wait, you can download the current git version from here:
https://github.com/ZoneMinder/ZoneMinder/tarball/master
by mastertheknife
Tue Dec 10, 2013 12:50 pm
Forum: ZoneMinder 1.26.x
Topic: Zoneminder Foscam Red image
Replies: 3
Views: 2673

Re: Zoneminder Foscam Red image

Hi,

The errors you are receiving are because of a resolution mismatch. The camera's resolution is higher than the resolution you entered.
by mastertheknife
Sun Dec 08, 2013 4:29 am
Forum: ZoneMinder 1.26.x
Topic: New problem - camera goes red
Replies: 45
Views: 21157

Re: New problem - camera goes red

The reason ZM does not quit right away if capture failed is because its the way it deals with small, temporary failures, such as signal loss.
A proper fix would be to correct the zm ffmpeg code: improve the error checking and add retry code.
Patches are always welcome.