Search found 194 matches

by timcraig
Thu Dec 10, 2009 6:05 pm
Forum: ZoneMinder 1.24.x
Topic: Encrypting Zoneminder traffic with ssh tunnel
Replies: 7
Views: 5252

I access Zoneminder by ssh tunnels when I'm at work. I've been doing this from versions 1.22.2 to 1.24.2-svn. I use PuTTy on a Vista desktop at work.

I'm not having any issues. I don't have the bandwidth to run montage but cycle mode is working okay.
by timcraig
Sun Nov 22, 2009 1:19 am
Forum: ZoneMinder Distributions
Topic: Post of Up and Running systems with equip and system details
Replies: 6
Views: 5273

From you're other posts, it looks like you were having Ubuntu or Debian package install problems. Those problems are more likely issues with software installation opposed to equipment problems. Here are the detail's of my equipment and installation: Zonminder Box: -AMD AlthonX2 4850e processor - Asr...
by timcraig
Thu Nov 19, 2009 7:52 pm
Forum: ZoneMinder 1.24.x
Topic: umask 002
Replies: 3
Views: 2445

The creating of the directory is done in event.cpp. It looks like this: if ( mkdir( path, 0755 ) ) { Error( "Can't mkdir %s: %s", path, strerror(errno)); } This part of the code starts at line# 135 in the latest version on the SVN. To change the group permissions to rw, you'd want to chang...
by timcraig
Mon Nov 16, 2009 6:20 pm
Forum: Hardware Queries
Topic: Interference???
Replies: 2
Views: 1860

I haven't had any experience with wireless analog cameras. In my experience with wired analog cameras, the source of interference that looks like that had always been in issue with the AC adapter connected to the camera. AC adapters at the local electronic shops (for me Radio Shack and Fry's) always...
by timcraig
Mon Nov 09, 2009 3:16 am
Forum: ZoneMinder 1.24.x
Topic: 2x mjpeg 1600x1200@8fps performance tips
Replies: 15
Views: 9804

You can set you zones to 'Alarmpixels' or 'Filterpixels' to reduce the complexity of the motion detection algorithm.

You can try enabling the 'FAST_IMAGE_BLENDS' option and disable the 'CREATE_ANALYSIS_IMAGES' ( both found under the 'Config' tab).
by timcraig
Tue Nov 03, 2009 8:38 pm
Forum: Feature Requests
Topic: Get a picture of whoever tries to unlock a session
Replies: 2
Views: 2629

I agree with Coke this makes a nice utility that is external to Zoneminder. Zoneminder does allow you to create custom triggers that, to my knowledge, that puts Zoneminder monitors in alarm state (and hence start recording). The only thing that needs to be done to complete the feature you are lookin...
by timcraig
Wed Oct 28, 2009 5:27 pm
Forum: ZoneMinder 1.24.x
Topic: Can't switch 4th camera to modect
Replies: 8
Views: 5609

If monitor is working and modect/mocord is not, I can think of two possibilities. Either you need to allocate more shared memory or there is something wrong with the zones for that monitor.

Try allocated a little more shared memory and try replacing the zones for that monitor with a simple zone.
by timcraig
Mon Oct 26, 2009 5:24 pm
Forum: Hardware Queries
Topic: eBay IP Camera. Now which settings to use...
Replies: 10
Views: 10285

It looks like you're camera has a url to get a snapshot at http://ipcam_url/snapshot.cgi. That might work for Zoneminder with a frame rate around 3-4 fps. You'd want to check if you can get ffmpeg to successfully capture the video stream. Here link to a post of someone able to getting ffmpeg to capt...
by timcraig
Thu Oct 22, 2009 9:37 pm
Forum: Hardware Queries
Topic: using PSTN without internet/lan connection??
Replies: 3
Views: 2407

It's possible to set up a PC with a phone line modem as a PPP dial-up server that connects you to the local network you're Zoneminder box is on. You can do a search on dial-up ppp server how to's. The slow speed of dial-up is going to be a big obstical to using Zoneminder. You'll need to set the ima...
by timcraig
Mon Oct 19, 2009 5:42 pm
Forum: Hardware Queries
Topic: 2 harddrives?
Replies: 1
Views: 1699

You have two clean options to go use RAID/JBOD or LVM. Here's Arch's documentation on these topics: http://wiki.archlinux.org/index.php/Installing_with_Software_RAID_or_LVM Even it you enable RAID on your motherboard, you still need to install and or configure your Linux system to use the hardisks i...
by timcraig
Mon Oct 19, 2009 5:24 pm
Forum: ZoneMinder 1.24.x
Topic: bt878 multiplexed inputs problem
Replies: 2
Views: 1909

Go to the 'Config' tab in Zoneminder's options window and uncheck 'V4L_MULTI_BUFFER' option. Then restart Zoneminder.
by timcraig
Thu Oct 15, 2009 4:24 am
Forum: ZoneMinder 1.24.x
Topic: 64 bit compiles, but 32 bit gives the following error
Replies: 6
Views: 3537

I think it will be

#ifdef __x86__

or

#ifdef __i386__



Testing for 64bit would be

#ifdef __x86_64__
by timcraig
Wed Oct 14, 2009 10:05 pm
Forum: ZoneMinder 1.24.x
Topic: 64 bit compiles, but 32 bit gives the following error
Replies: 6
Views: 3537

Oh! It just donned on me. I don't think the time_t value gets modified at all in the functions. If this is a case, you can probably get by changing the time_t to "const time_t". The compiler might be okay with overloading function names with (int,int) and (int, const time_t)
by timcraig
Wed Oct 14, 2009 9:52 pm
Forum: ZoneMinder 1.24.x
Topic: 64 bit compiles, but 32 bit gives the following error
Replies: 6
Views: 3537

Opps I was thinking inheritance overriding instead of function overloading. It appears the case is that 32-bit time_t is identical to int. The compiler doesn't like it because it can't distinguish the (int, int) and the (int, time_t) functions. There might be an elegant solution to this problem like...
by timcraig
Wed Oct 14, 2009 8:05 pm
Forum: ZoneMinder 1.24.x
Topic: 64 bit compiles, but 32 bit gives the following error
Replies: 6
Views: 3537

I see from other posts you're working on a FreeBSD port of Zoneminder.

It looks like time_t is defined differently on the 32-bit and 64-bit systems you are working on and the 32-bit typedef is not type compatible with int. I would look up the time_t typedef.