Search found 14 matches

by azir
Sat Jun 06, 2009 4:40 am
Forum: ZoneMinder 1.24.x
Topic: Fedora 8 compilation problem
Replies: 5
Views: 4308

Re: same error in Fedora 9 and Fedora 10

cpg wrote:update, to bypass this issue

Code: Select all

rpm -e ccache
thanks, i also tried get out of this problem on fedora 10 (new to this distro, i'm slackware user :) ), i tried installing any devel packages that might be left over, but the problem is ccache, uninstall it

Code: Select all

yum remove ccache
by azir
Sat Jun 06, 2009 4:28 am
Forum: ZoneMinder 1.24.x
Topic: gscpa, 2.6.27 kernel, v4l2 = no picture
Replies: 6
Views: 5897

gspca kernel module supports many usb web cams, but sometimes it need help of libv4l2, try preload libv4l within zmdc.pl script it works for me with my usb webcams (genius and prolink) $ENV{PATH} = '/bin:/usr/bin'; $ENV{SHELL} = '/bin/sh' if exists $ENV{SHELL}; # preload libv4l2 $ENV{LD_PRELOAD ...
by azir
Thu May 07, 2009 6:52 am
Forum: ZoneMinder 1.24.x
Topic: Zoneminder streaming options
Replies: 14
Views: 8975

At the moment you can't configure ZM to stream over UDP, you would need to feed ZM streams into a third party encoder such as ffserver or Darwin Streaming Server etc. I tried to make slight modification for zm_xxx_camera.cpp to capture then stream it as rtp/udp. the streamed rtp/udp then played by ...
by azir
Fri May 23, 2008 6:56 am
Forum: Feature Requests
Topic: Storage: multiple partition
Replies: 3
Views: 2983

I got it, changed getDiskPercent and checkFilter subroutine on zmfilter.pl, so look like: sub getDiskPercent { my $fMon = shift; my $command; if ( $fMon ) { $command = "df " . ZM_PATH_WEB . '/' . ZM_DIR_EVENTS . '/' . $fMon; } else { $command = "df ."; } my $df = qx( $command ); my $space = -1; if ...
by azir
Thu May 15, 2008 12:37 am
Forum: Hardware Queries
Topic: saa7134 >8 channels
Replies: 19
Views: 12378

It runs well anyway, but I'm quite unsatisfied with full 8 monitor in montage so I grouped into 2 groups, each 4 monitor .. It runs Zoneminder-1.23.2 on Slackware-12, just run as server, no monitor, keyboard, mouse. Only run services required by zm and me :) I need ssh cam settings: func = modect ...
by azir
Wed May 14, 2008 6:16 pm
Forum: Feature Requests
Topic: Storage: multiple partition
Replies: 3
Views: 2983

Thanks for the quick reply.

Yes, I'm also thinking about handling it with external script, but it merely still a thinking :oops:
I will browse the contribs anyway, thanks for reminding me about this.
Gonna report it here as soon as I resolve this.
by azir
Wed May 14, 2008 4:37 pm
Forum: Feature Requests
Topic: Storage: multiple partition
Replies: 3
Views: 2983

Storage: multiple partition

I run zm for 8 (set to modect) camera and a dedicated 320 GB disk (as one ext3 partition) to hold the recording. During high cpu load and high disk activity (when most camera modect-ing), many events are skipped (incomplete/blank frame). It seems that the slow disk write caused this, or may be I'm ...
by azir
Wed May 14, 2008 3:25 pm
Forum: Hardware Queries
Topic: saa7134 >8 channels
Replies: 19
Views: 12378

Re: problem solved

For saa7134 chipset this problem can be solved in few steps 1. download kernel sources 2. edit drivers/media/video/saa7134/saa7134.h , search for #define SAA7134_MAXBOARDS 8 #define SAA7134_INPUT_MAX 8 and change values in what you need 3. compile 4. reboot and play i hoppe this will help Thanks ...
by azir
Thu Mar 27, 2008 6:44 pm
Forum: ZoneMinder Previous Versions
Topic: run command when an even ocurrs / trigger event with command
Replies: 12
Views: 14619

From igor's zmfilter.log file, I am now sure that his zm installation is OK and as I presume before that maybe some commands inside the script failed to run properly. is webserver-user has access to the /etc/gnokiirc ? Try to run the script as webserver-user (mine apache) root ~# su - apache apache ...
by azir
Thu Mar 27, 2008 11:42 am
Forum: ZoneMinder Previous Versions
Topic: Wanting to embed just the video stream on other Site
Replies: 5
Views: 11443

I use this script for my similiar case. place the script zm_img.php to the web root directory of zoneminder (mine is /var/www/htdocs/zm) please add opening an closing php tag yourself, i got problem with formatting here seem like i need to familiarize myself with bbcode :D /* ** zm_img.php */ import ...
by azir
Thu Mar 27, 2008 8:49 am
Forum: ZoneMinder Previous Versions
Topic: run command when an even ocurrs / trigger event with command
Replies: 12
Views: 14619

Just to make sure that zm handle execute filter properly, could you please use simple script that write somethig to a file eg. #!/bin/sh date > /tmp/somefile.log echo "I was called as $@" >> /tmp/somefile.log to replace zm_sendsms.sh temporaryly. if /tmp/somefile.log really exists and contain the ...
by azir
Wed Mar 26, 2008 4:13 pm
Forum: ZoneMinder Previous Versions
Topic: run command when an even ocurrs / trigger event with command
Replies: 12
Views: 14619

From zoneminder documentation http://www.zoneminder.com/wiki/index.php/Documentation#Filtering_Events : Finally you can also specify a script which is run on each matched event. This script should be readable and executable by your web server user. It will get run once per event and the relative ...
by azir
Wed Mar 26, 2008 3:34 pm
Forum: ZoneMinder Previous Versions
Topic: [Solved] New DVR streaming mode problem on 1.23.1 (gentoo)
Replies: 6
Views: 3793

Maybe your php run in safe mode, socket extension (socket.so) not loaded, or your php configuration file (php.ini) does not allow socket operation. find this line within php.ini file safe_mode = On Change to safe_mode = Off extension=socket.so if not there, add the extension=socket.so line to your ...
by azir
Wed Mar 26, 2008 3:07 pm
Forum: Feature Requests
Topic: Mpeg4
Replies: 13
Views: 9127

In case of ZM currently cannot capture from MPEG, there would be some chance eg. using VLC (http://www.videolan.org) to capture from MPEG then stream it as JPEG so that ZM can handle it