Search found 31 matches

by lukelukeluke
Sat Nov 27, 2010 10:29 am
Forum: ZoneMinder 1.24.x
Topic: Zoneminder on Debian Lenny: No luck with installation yet
Replies: 0
Views: 1318

Zoneminder on Debian Lenny: No luck with installation yet

Hi there, I'm trying to get Zoenminder (latest stable) working on Debian Lenny (latest stable) from source. I already tried unstable package source and then get zm from repository with no luck. ZM compiles and isntalls without error. I have 3 webcam sources, for example /dev/video2 works very well w...
by lukelukeluke
Mon Jun 28, 2010 6:42 am
Forum: ZoneMinder Previous Versions
Topic: Disable logging to /var/log/messages
Replies: 15
Views: 19698

Thanks a lot for this, worked very well! 8)
by lukelukeluke
Wed Mar 17, 2010 9:35 am
Forum: ZoneMinder 1.24.x
Topic: CentOS 5.2 - [zm_ffmpeg_camera.o] Error 1
Replies: 8
Views: 7633

This topc has the same suggestion: http://www.zoneminder.com/forums/viewtopic.php?p=43032 First, you cannot have any copies of ffmpeg installed via rpms or whatever on your machine. If so, delete them!!! So what I did: - I removed ffmpeg from rpms - Installed ffmpeg to /usr/local/ffmpeg (make instal...
by lukelukeluke
Sun Mar 14, 2010 12:18 pm
Forum: ZoneMinder 1.24.x
Topic: CentOS 5.2 - [zm_ffmpeg_camera.o] Error 1
Replies: 8
Views: 7633

Also: When I take ffmpeg latest version (FFmpeg version git-f276d87) and install with ./configure --prefix=/usr/local/ffmpeg;make;make install and then try Zoneminder again, I get the following with the option --with-ffmpeg=/usr/local/ffmpeg : checking ffmpeg/avformat.h usability... no checking ffmp...
by lukelukeluke
Sun Mar 14, 2010 12:08 pm
Forum: ZoneMinder 1.24.x
Topic: CentOS 5.2 - [zm_ffmpeg_camera.o] Error 1
Replies: 8
Views: 7633

Hi Is this error resolved? I had 1.23.x running on my openSUSE 11.1 box. Now, when I tried to upgrade to 1.24.2 (latest release) I get this same error as he got with 1.24.0: if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include -I/usr/include -Wall -Wno-sign-compare -fno-inline -I/usr/include -frepo -g...
by lukelukeluke
Sun Sep 27, 2009 10:00 am
Forum: Feature Requests
Topic: Print special things on Webcam Images (zmtrigger.pl)
Replies: 6
Views: 6964

If you used the php version, you could just do a little shell script that would open that file (a certain information from it) and call the PHP script with your information: VAR=`cat /path/to/your/file | grep line` wget http://myserver/zm/myscript.php?extTrigger=1|show||||$VAR For more info: man cat...
by lukelukeluke
Mon Aug 31, 2009 12:50 pm
Forum: ZoneMinder Previous Versions
Topic: Disable logging to /var/log/messages
Replies: 15
Views: 19698

So does no one know how I can disable logging to messages file? I got all relevant stuff logged to zoneminder.log, but everything is still in messages too!
by lukelukeluke
Mon Aug 10, 2009 9:49 pm
Forum: ZoneMinder Previous Versions
Topic: Disable logging to /var/log/messages
Replies: 15
Views: 19698

Got my hopes up too soon... It does actually log all the zoneminder messages into /var/log/zoneminder.log , but it does at the same time still log them into /var/log/messages . Do I have to add something to the code that it only logs the messages there? # # Filter Zoneminder # filter f_zm { match(&q...
by lukelukeluke
Mon Aug 10, 2009 4:50 pm
Forum: ZoneMinder Previous Versions
Topic: Disable logging to /var/log/messages
Replies: 15
Views: 19698

I found the right config file and ow-surprise it worked.
Do you know if this also filters other information out or only zoneminder info? Nothing from other programs what contains "zm"?
by lukelukeluke
Mon Aug 10, 2009 2:58 pm
Forum: ZoneMinder Previous Versions
Topic: Disable logging to /var/log/messages
Replies: 15
Views: 19698

Doesn't work for me either.
mitch: How exactly has this to be done?
Thanks
by lukelukeluke
Sun Aug 09, 2009 9:43 am
Forum: ZoneMinder Previous Versions
Topic: Disable logging to /var/log/messages
Replies: 15
Views: 19698

Disable logging to /var/log/messages

Hi Does anyone know how I can disable logging of zoneminder stuff to /var/log/messages ? I want logging in separate files instead, this also works, I get all these zm* files in /tmp. But I would like to disable logging to the messages file as I get 100's of entries like these: Aug 6 11:57:06 AMD2400...
by lukelukeluke
Tue Jul 07, 2009 4:17 pm
Forum: ZoneMinder 1.24.x
Topic: Print temperature on Images?
Replies: 16
Views: 10632

Thanks for posting this to the Wiki Normando. Maybe you can include my little hint for people who dont have PHP (or I can do it if you want me to). You know you can also send the commands via telnet: telnet localhost 6802 1|show||||test For this purpose, I created this script: #!/bin/sh # ./script.s...
by lukelukeluke
Sun Jun 28, 2009 9:34 am
Forum: Feature Requests
Topic: Print special things on Webcam Images (zmtrigger.pl)
Replies: 6
Views: 6964

Normando posted the solution in this topic: 1- Comment those channels you will not use. In my case I only use port 6802 to control zmtrigger.pl, so comment the rest of connection in zmtrigger.pl my @connections; push( @connections, ZoneMinder::Trigger::Connection->new( name=>"Chan1", chann...
by lukelukeluke
Sun Jun 28, 2009 12:01 am
Forum: ZoneMinder 1.24.x
Topic: Print temperature on Images?
Replies: 16
Views: 10632

wow! Thanks Normando! Just did everything you wrote and it worked perefctly fine like that! An instruction like this should be added into the zmwiki or manual!
Btw.: It even works with Monitor-Mode (No motion detection).
by lukelukeluke
Sat Jun 27, 2009 12:08 pm
Forum: ZoneMinder 1.24.x
Topic: Print temperature on Images?
Replies: 16
Views: 10632

So...it is very easy to add dinamically a text on the timestamp over the image. Interface with zmtrigger.pl your external program and send a series of "<id>|show||||<showtext>" to add your own text over the image. Of course, add the %Q token in your monitor timestamp settings. That's why ...