Search found 63 matches

by keyboardgnome
Tue Apr 18, 2006 7:06 pm
Forum: User Contributions
Topic: Stream viewer for perl Tk (winders/linux)
Replies: 10
Views: 24415

the leak has to do with the following two lines $image[ $n ]->delete if $image[ $n ]; ## Addendum: $image[ $n ] = $mw->Photo( -format=>'jpeg', -data=>$data ); I'm still trying to figure out why it seems that the previous image isnt being deleted. Anyone out there familiar with perl's Tk?
by keyboardgnome
Tue Apr 18, 2006 5:34 pm
Forum: User Contributions
Topic: Stream viewer for perl Tk (winders/linux)
Replies: 10
Views: 24415

Well, I regret to report that there is a memory leak somewhere in there. I think I know where it is though and will report the fix when I get it.
by keyboardgnome
Tue Apr 18, 2006 3:34 pm
Forum: User Contributions
Topic: Stream viewer for perl Tk (winders/linux)
Replies: 10
Views: 24415

Stream viewer for perl Tk (winders/linux)

I took some inspiration from Mark from his website, and added to it to support 4 (or more) viewers. To add more than 4 viewers you'll need to edit the source code in this. #!/usr/bin/perl -slw # Origional: # http://www.awe.com/ha/multipart.html # Test program to decode the multipart-replace stream t...
by keyboardgnome
Tue Apr 11, 2006 12:57 pm
Forum: ZoneMinder Previous Versions
Topic: Installing ZM from source
Replies: 8
Views: 6778

I've also noticed that the configure script allows you to go right thought without erroring out on missing libs. Check to make sure you're not missing anything again my running 'make clean; ./configure' again; atleast paste the output for it here with the username you're compiling with. If you get a...
by keyboardgnome
Tue Apr 11, 2006 12:52 pm
Forum: ZoneMinder Previous Versions
Topic: ZM and alarms and Asterisk
Replies: 8
Views: 8017

Oh, excellent! Thanks for the guidance!
by keyboardgnome
Mon Apr 10, 2006 7:56 pm
Forum: ZoneMinder Previous Versions
Topic: ZM and alarms and Asterisk
Replies: 8
Views: 8017

I've hacked together a script- but it's not the way I'd like to do this. I tried using the filters, and they didnt do what I wanted them to do. I found a code snippet over here http://www.zoneminder.com/forums/viewtopic.php?t=5577&highlight=zmtrigger with the way that I would like to get this to...
by keyboardgnome
Mon Apr 10, 2006 7:02 pm
Forum: ZoneMinder Previous Versions
Topic: ZM and alarms and Asterisk
Replies: 8
Views: 8017

Would I have to add something within here? lines 205-208 if ( !defined($monitor->{LastEvent}) || ($last_event != $monitor->{LastEvent}) ) # A new event { push( @out_messages, $monitor->{Id}."|on|".time()."|".$last_event ); }
by keyboardgnome
Mon Apr 10, 2006 6:53 pm
Forum: Non-ZoneMinder Chat
Topic: Cron Restart
Replies: 8
Views: 4986

short of permissions, do you have full paths specified? is cron enabled to execute as root?
by keyboardgnome
Mon Apr 10, 2006 1:13 pm
Forum: Hardware Queries
Topic: Card detected but no video device?
Replies: 3
Views: 2664

lsmod
by keyboardgnome
Mon Apr 10, 2006 1:04 pm
Forum: Non-ZoneMinder Chat
Topic: Cron Restart
Replies: 8
Views: 4986

Is cron running?
by keyboardgnome
Mon Apr 10, 2006 4:31 am
Forum: Hardware Queries
Topic: Card detected but no video device?
Replies: 3
Views: 2664

I dont know if this will help, but do you have the module videodev loaded?
by keyboardgnome
Mon Apr 10, 2006 4:26 am
Forum: ZoneMinder Previous Versions
Topic: Memory leak / buffer overrun
Replies: 13
Views: 8525

lsof- see what has open sockets running, and other related hooks; you should also know that linux uses 'shared' resources (virtual threads). read this: http://techpatterns.com/forums/about687.html and http://virtualthreads.blogspot.com/2006/02/understanding-memory-usage-on-linux.html I take it none ...
by keyboardgnome
Mon Apr 10, 2006 4:17 am
Forum: Non-ZoneMinder Chat
Topic: Anyone up for swapping FTP space for events?
Replies: 2
Views: 2938

You could always have it email events to a gmail account :)
by keyboardgnome
Mon Apr 10, 2006 4:04 am
Forum: ZoneMinder Previous Versions
Topic: ZM and alarms and Asterisk
Replies: 8
Views: 8017

ZM and alarms and Asterisk

So, I got the previous problem solved, and I am now having a blast with ZM :) I'm currently integrating my ZM install with my remote Asterisk server that has festival running on it. I already have a basic idea as to how someone else did this per http://www.zoneminder.com/forums/viewtopic.php?t=5957&...
by keyboardgnome
Mon Apr 10, 2006 3:57 am
Forum: ZoneMinder Previous Versions
Topic: ZM and USB quickcam
Replies: 4
Views: 2907

The problem was that I missunderstood the instructions in the manual. When it says to have in the zm.conf file the same username and group that apache is executing by, I made the assumption that my default apache install was using 'apache:apache'. So, I checked httpd.conf and low and behold, it wasn...