Search found 14 matches

by Jolaf
Thu Feb 09, 2012 6:40 pm
Forum: User Contributions
Topic: Light control script
Replies: 3
Views: 9749

Re: Light control script

hi christo, I finally found the post ! The errors are due to the fact that you don't link the jpeg library with your binary. First you also must have a "libjpeg-dev" package installed. I used libjpeg8-dev I used synaptic on my ubuntu, but the command line to install should be something like sudo apt ...
by Jolaf
Wed Feb 22, 2006 2:28 pm
Forum: ZoneMinder Previous Versions
Topic: [help] Zoneminder suddenly stopped working
Replies: 6
Views: 5023

I have each file in only one exemplar.
I also compared sizes and dates for a few binary (zma zmu) files in the source directory and in the execution directory. It appears to me that they are the same.

Do you want me to investigate a little deeper ?
by Jolaf
Tue Feb 21, 2006 10:54 am
Forum: ZoneMinder Previous Versions
Topic: [help] Zoneminder suddenly stopped working
Replies: 6
Views: 5023

I did the two checkings, and, as far as I can see, they found nothing special (is there a log of what is done ?) I manually deleted the second monitor, and it seems that things are now unlocked : zoneminder functions now ! I guess that things went wrong when the computer suddenly rebooted (stormy ...
by Jolaf
Mon Feb 20, 2006 11:05 pm
Forum: ZoneMinder Previous Versions
Topic: [help] Zoneminder suddenly stopped working
Replies: 6
Views: 5023

how to do integrity checking ?

It seems that the computer runing ZM hard rebooted during the night (I have kernel starting messages not preceeded by stopping messages).
by Jolaf
Mon Feb 20, 2006 3:41 pm
Forum: ZoneMinder Previous Versions
Topic: [help] Zoneminder suddenly stopped working
Replies: 6
Views: 5023

[help] Zoneminder suddenly stopped working

My verision 1.22 suddendy stopped functionning this weekend. It was runing very smooth from weeks now. I have a pal camera plugged in a miro PCTV board. My mysql version is 4.0.23_Debian-3ubuntu2.1-log, runing on an old fashioned celeron 500 with 128 Mbytes of memory. My source device appears red on ...
by Jolaf
Thu Feb 09, 2006 10:53 pm
Forum: User Contributions
Topic: Tweak Brightness at sunrise/sunset
Replies: 7
Views: 15049

Here is a cleaner version with a few parameter settings and some kind of help to use it : lightctl -? Now you can specify the monitor and the parameters on the command line. It is possible to run it without any parameters since there are valid default values in the script. There is a very little ...
by Jolaf
Tue Feb 07, 2006 10:30 pm
Forum: Feature Requests
Topic: zone id in event database? time between events?
Replies: 3
Views: 3255

Great :!:
by Jolaf
Tue Feb 07, 2006 11:08 am
Forum: Feature Requests
Topic: zone id in event database? time between events?
Replies: 3
Views: 3255

+1

I request the same feature : a zone id in the database, for the same reason : several zones in 1 monitor.
by Jolaf
Thu Feb 02, 2006 10:43 pm
Forum: User Contributions
Topic: Tweak Brightness at sunrise/sunset
Replies: 7
Views: 15049

I don't understand what you mean. I use a pal camera pluged into a PCTV, which is already a regular to me. There is no need to configure ZM for my script to work. Only crontab : the script is launched every ten minutes. However, the script needs to be a litle bit more sophisticated : checking that ...
by Jolaf
Thu Feb 02, 2006 3:30 pm
Forum: User Contributions
Topic: Tweak Brightness at sunrise/sunset
Replies: 7
Views: 15049

I have the same problem. I used Oskin's jpgbright program, and did my own lightctl script, based on his. The script will try to maintain image brightness between LUM-LARG and LUM+LARG by progressively increasing or decreasing the camera brightness for monitor MONITORID. It is very usefull for ...
by Jolaf
Mon May 09, 2005 10:31 pm
Forum: ZoneMinder Previous Versions
Topic: Confused with paths
Replies: 6
Views: 7664

I've made things working, but still don't understand why I have to modify most of the web related path. I agree with the troubleshooting section of the readme that says path is a little nightmare to handle. When fixing my trouble I noticed that the problem comes from the fact that ZM_DIR_EVENTS (for ...
by Jolaf
Tue May 03, 2005 10:02 pm
Forum: ZoneMinder Previous Versions
Topic: Confused with paths
Replies: 6
Views: 7664

I started fixing some thing in zm_html_view_frame.php

Code: Select all

//$event_path = ZM_DIR_EVENTS.'/'.$event['MonitorId'].'/'.$event['Id'];
replaced by

Code: Select all

$event_path = '/events/'.$event['MonitorId'].'/'.$event['Id'];
I works, now I have my jpeg frames :)
but they are black :(
by Jolaf
Tue May 03, 2005 12:14 pm
Forum: ZoneMinder Previous Versions
Topic: Confused with paths
Replies: 6
Views: 7664

I must say I am not used to those apache/php/mysql... stuffs. Howerver, I found the file /etc/apache2/sites-available/default and I changed - DocumentRoot to /var/www/html/zm - Directory to /var/www/html/zm Now, when i put 192.168.0.3, I go stright to zm.php. nice Then I tried what you said, and it ...
by Jolaf
Mon May 02, 2005 11:12 pm
Forum: ZoneMinder Previous Versions
Topic: Confused with paths
Replies: 6
Views: 7664

Confused with paths

The problem is that if I set ZM_DIR_EVENTS to : /var/www/html/zm/events jgp files are fine stored in a directory which is /var/www/html/zm/events/1/7/ (camera 1, event 7) but the images web adress is : http://192.168.0.3/var/www/html/zm/events/1/7/001-capture.jpg whereas the gui web adress is http ...