Search found 6 matches

by neb
Thu Feb 11, 2010 9:08 pm
Forum: ZoneMinder 1.24.x
Topic: compile problem with libjpeg8
Replies: 6
Views: 5089

streams fine for me
by neb
Fri Feb 05, 2010 7:23 pm
Forum: ZoneMinder 1.24.x
Topic: compile problem with libjpeg8
Replies: 6
Views: 5089

compile problem with libjpeg8

It looks like there's a naming conflict between zm and the newly released libjpeg release 8. Here's the error that you'll likely see when you build it: zm_jpeg.h:39: error: declaration of C function ‘void jpeg_mem_src(jpeg_decompress_struct*, const JOCTET*, int)’ conflicts with /usr/include/jpeg...
by neb
Thu Dec 31, 2009 3:50 am
Forum: ZoneMinder 1.24.x
Topic: axis streaming results in periodic corrupted images
Replies: 0
Views: 1377

axis streaming results in periodic corrupted images

I've setup up my Axis cameras for streaming (Axis 207) using the ffmpeg source. One caveat is that my server uses a wireless connection due to the requirement that it also serves a dual role as an HTPC, and thus could not be optimally located for a wired connection. The path to the camera is through...
by neb
Tue Jan 27, 2009 5:58 am
Forum: Hardware Queries
Topic: Kodicom 8800r
Replies: 7
Views: 6557

just change this: usleep( (1000000 * ZM_RATE_BASE)/(base_fps*abs(replay_rate*2)) ); to this: usleep( (1000000 * ZM_RATE_BASE)/((base_fps?base_fps:1)*abs(replay_rate*2)) ); It's a divide by 0 exception where the base_fps was 0. Nothing was written into the buffer since the last time this function was...
by neb
Mon Jan 05, 2009 6:50 pm
Forum: Feature Requests
Topic: Axis 207 and On-Camera motion detection solved
Replies: 30
Views: 117403

updated my previous post

I went back and diff'ed the posted code with my version and found some differences. After fixing them, the same wrong code appeared again in the post. This forum somehow strangely automatically changes the following and a few other lines from: for (my $i=0;$i<=$#{$actions{$action_time}};$i++) to: fo...
by neb
Wed Dec 17, 2008 1:54 am
Forum: Feature Requests
Topic: Axis 207 and On-Camera motion detection solved
Replies: 30
Views: 117403

some tweaks

Thanks for the invaluable guide. It's been most helpful in getting my setup to work in the way I wanted. My zoneminder system also shares a dual role as a home threater pc, so it was critical offloading the motion detection work to the cameras where the processor cycles are free. I did however found...