Search found 678 matches

by mastertheknife
Sat Dec 07, 2013 9:21 pm
Forum: ZoneMinder 1.26.x
Topic: Horrible Video Quality
Replies: 11
Views: 7513

Re: Horrible Video Quality

Those errors are because of a bug in 1.26.4 installation using cmake. Add -DENABLE_MMAP="yes" to your cmake command line.
by mastertheknife
Sat Dec 07, 2013 9:04 pm
Forum: ZoneMinder 1.26.x
Topic: Horrible Video Quality
Replies: 11
Views: 7513

Re: Horrible Video Quality

I believe it's an issue with the bttv driver. I tried very hard to debug this but failed. I don't think it's a zoneminder issue.
by mastertheknife
Sat Dec 07, 2013 8:38 pm
Forum: ZoneMinder 1.26.x
Topic: Horrible Video Quality
Replies: 11
Views: 7513

Re: Horrible Video Quality

I have the same issue with analog cameras. Are you using the bttv driver?
by mastertheknife
Sat Nov 30, 2013 6:32 pm
Forum: ZoneMinder 1.26.x
Topic: Shared memory problem OpenSuse 12.3
Replies: 4
Views: 2788

Re: Shared memory problem OpenSuse 12.3

Hi, This is a bug that sadly was only fixed after ZM 1.26.4 was released. The workaround for ZM 1.26.4 is indeed like you said: -DENABLE_MMAP=yes ZM 1.26.4 was the first version to ship with cmake (does not replace autotools) so its not perfect. I have done many fixes and improvements since then whi...
by mastertheknife
Sun Nov 24, 2013 2:13 pm
Forum: ZoneMinder 1.26.x
Topic: Signal 11 - segmentation fault errors - backtrace included!
Replies: 8
Views: 4454

Re: Signal 11 - segmentation fault errors - backtrace includ

Hi, Its because of the sign mess we had lately. We were attempting to remove all sign comparison warnings during compilation, so we changed the sign of many variables and it seems we messed up few things. I fixed it today: https://github.com/ZoneMinder/ZoneMinder/commit/88f2bc6b630194b8c688ea5793370...
by mastertheknife
Tue Nov 19, 2013 2:52 pm
Forum: ZoneMinder 1.26.x
Topic: HIKVision Camera
Replies: 14
Views: 9772

Re: HIKVision Camera

Hi, FFMPEG has issues with RTSP\RTP over UDP (the way it should be), so you all need to add ?tcp to the end of path to force it to use TCP http://ffmpeg.org/pipermail/libav-user/2011-July/000405.html If building ffmpeg from source, you can fix it like described here (by undefining HAVE_PTHREADS): ht...
by mastertheknife
Tue Nov 19, 2013 2:50 pm
Forum: ZoneMinder 1.25.x
Topic: Proken images / frame noise with Gransdtream GXV3611HD
Replies: 1
Views: 1603

Re: Proken images / frame noise with Gransdtream GXV3611HD

FFMPEG has issues with RTSP\RTP over UDP (the way it should be), so you need to add ?tcp to the end of path to force it to use TCP

http://ffmpeg.org/pipermail/libav-user/ ... 00405.html
by mastertheknife
Tue Nov 19, 2013 2:37 pm
Forum: ZoneMinder 1.26.x
Topic: problem after upgrade to 1.26.4
Replies: 6
Views: 3057

Re: problem after upgrade to 1.26.4

Hi,

Execute the SQL statements below to fix this manually:

Code: Select all

ALTER TABLE `Monitors` ADD `Colours` TINYINT UNSIGNED NOT NULL DEFAULT '1' AFTER `Height`;
ALTER TABLE `Monitors` ADD `Deinterlacing` INT UNSIGNED NOT NULL DEFAULT '0' AFTER `Orientation`
by mastertheknife
Fri Nov 15, 2013 8:40 pm
Forum: ZoneMinder 1.26.x
Topic: Compile failure
Replies: 5
Views: 2482

Re: Compile failure

Hi, The parameter in the CPPFLAGS is not needed anymore, it's included internally. For the ffmpeg prefix, you can use export CMAKE_PREFIX_PATH="/usr/local/share/ffmpeg" but sadly this is broken on v1.26.4, you need ZoneMinder from git for this to work: https://github.com/ZoneMinder/ZoneMin...
by mastertheknife
Fri Nov 15, 2013 7:16 pm
Forum: ZoneMinder 1.26.x
Topic: Compile failure
Replies: 5
Views: 2482

Re: Compile failure

Hi,

You probably need to update your ffmpeg.
by mastertheknife
Fri Nov 15, 2013 9:31 am
Forum: ZoneMinder 1.26.x
Topic: Compile failure
Replies: 5
Views: 2482

Re: Compile failure

Hi, This is because zm includes its own version of round() for old systems that do not have the round() function. It seems the detection fails to see you already have round() and a conflict arises. You can work around it by adding -DHAVE_DECL_ROUND=1 to your cmake command line. I will try to get thi...
by mastertheknife
Wed Nov 13, 2013 2:05 pm
Forum: ZoneMinder 1.26.x
Topic: zmtrigger Can't get shared memory
Replies: 3
Views: 2480

Re: zmtrigger Can't get shared memory

Was this compiled with cmake?
by mastertheknife
Tue Nov 12, 2013 6:55 am
Forum: ZoneMinder 1.26.x
Topic: Signal 11 - segmentation fault errors - backtrace included!
Replies: 8
Views: 4454

Re: Signal 11 - segmentation fault errors - backtrace includ

Haven't investigated yet but i think the problem is that read() syscall returns -1 because it was interrupted and then zm tries to read -1 bytes and boom..
by mastertheknife
Tue Nov 12, 2013 6:53 am
Forum: ZoneMinder 1.26.x
Topic: error: zm requires MySQL headers... but they're there!
Replies: 5
Views: 2635

Re: error: zm requires MySQL headers... but they're there!

Do you have a mysql.h file in /usr/include/mysql/mysql.h ?