Search found 19 matches

by AmmarossDanan
Wed Aug 29, 2007 6:08 pm
Forum: ZoneMinder Previous Versions
Topic: Video Export Compression/Quality (mpg/wmv/etc.)
Replies: 5
Views: 5714

I've noticed the default output is of rather low quality myself. Maybe you should try this (Options -> Images):
ZM_FFMPEG_OUTPUT_OPTIONS = -r 20 -pass 2 -b 5000k

Works well for me.
by AmmarossDanan
Tue Jul 31, 2007 11:36 pm
Forum: Feature Requests
Topic: Viewing Events as motion thumbnails
Replies: 0
Views: 1651

Viewing Events as motion thumbnails

Has anyone considered making a mod to the events archive (camera monitor -> archive) that, instead of a table with stats, is more like the 'thumbnail' view in WinXP and uses onmouseover events to put the thumbnail event into motion? I've considered doing this myself, but figured I would throw the id...
by AmmarossDanan
Thu Jul 19, 2007 10:51 pm
Forum: Hardware Queries
Topic: TrendNet TV-IP301W
Replies: 7
Views: 5904

ZM don't send \r\n (such RFC said) at the end of "GET", but only "\n"
check this post: http://www.zoneminder.com/forums/viewto ... hlight=rfc
by AmmarossDanan
Thu Jul 19, 2007 8:51 am
Forum: Hardware Compatibility List
Topic: Axis 223m
Replies: 8
Views: 7623

You could skip PoE injectors altogether as well by wiring your power cord right into the ethernet on an unused pair (like brown). Kinda hackish, but it saved me on a couple old cameras of mine that had expensive injectors.
by AmmarossDanan
Thu Jul 19, 2007 8:43 am
Forum: Hardware Queries
Topic: URGENT: D-link or Panasonic with POE
Replies: 4
Views: 3395

If you're really tight on budget and can't afford a PoE switch or PoE cameras, you could (and I do not really advocate this, but it works) make your own PoEs by clipping the power cord and hooking it up to a couple wires off the ethernet cable that are unused (like the brown pair). I had a couple Ax...
by AmmarossDanan
Thu Jul 19, 2007 8:33 am
Forum: Feature Requests
Topic: System uptime on main page.
Replies: 4
Views: 4107

Place this in the area of your zm_html_view_console.php script you want to display the system uptime. (Mine is right under the date/time in upper-left). Starting with line 224: ! <td class="smallhead" style="line-height:11px" align="left"><?= preg_match( '/%/', DATE_FMT...
by AmmarossDanan
Tue Jul 17, 2007 5:25 pm
Forum: ZoneMinder Previous Versions
Topic: need help with fedora install
Replies: 19
Views: 23992

You can search forum wide for postings by poster-name. I've posted a Sony PTZ control script, a patch for displaying events properly when clicking on the Totals at the bottom of the console page, and a few others... The zm_mpeg.h is from the zoneminder package, and this compiling error only happens ...
by AmmarossDanan
Tue Jul 17, 2007 7:37 am
Forum: ZoneMinder Previous Versions
Topic: need help with fedora install
Replies: 19
Views: 23992

Be sure to look around for patches. I've posted a few under this name and "ammaross".
by AmmarossDanan
Tue Jul 17, 2007 4:25 am
Forum: ZoneMinder Previous Versions
Topic: need help with fedora install
Replies: 19
Views: 23992

Could you include lines 22-40 or so from your zm_mpeg.h file? It likely has to do with this error: zm_mpeg.h:26: error: stray ‘\342’ in program Which is likely due to a direct copy/paste of my code, which due to a document auto-formatting problem changed a legal " into an illegal “. Try changin...
by AmmarossDanan
Mon Jul 16, 2007 7:48 pm
Forum: ZoneMinder Previous Versions
Topic: Who's using PHP5 out there?
Replies: 4
Views: 2721

Think the question should have been "Who isn't using PHP5 out there?"

PHP5 on Fedora6, no problems.
and
PHP5 on Fedora5 for more than a year. No problems.
by AmmarossDanan
Mon Jul 16, 2007 7:47 pm
Forum: ZoneMinder Previous Versions
Topic: need help with fedora install
Replies: 19
Views: 23992

Try this: In src/zm_mpeg.h starting on line 26, add the lines with the + (removing the + of course) The other lines are just for reference and should be already in the file. #define ZM_MPEG_H +extern "C" { +#define __STDC_CONSTANT_MACROS #include <ffmpeg/avformat.h> +} #if FFMPEG_VERSION_I...
by AmmarossDanan
Fri Jul 13, 2007 10:20 pm
Forum: Hardware Queries
Topic: Sony SNC-RZ30N ptz? remote host path?
Replies: 14
Views: 12170

Control Script

I have a network-attached SNC-RZ30n that I've been dying to get a control script for, but sadly, only a serial-attached script was provided by ZM. So, using it as a bit of a reference, and also the PDF manual provided by goreo95033, I whipped up a functioning control script. #!/usr/bin/php <?php /* ...
by AmmarossDanan
Fri Jul 13, 2007 8:15 pm
Forum: ZoneMinder Previous Versions
Topic: Usb camera and ip camera help
Replies: 8
Views: 5486

I have an Axis 2100 on my camera network. It was a bit rough setting it up, but here's what I use: Remote Host Name: <user>:<pass>@<ipaddress> Remote Host Port: 80 Remote Host Path: /axis-cgi/jpg/image.cgi?resolution=320x240 Remote Image Colors: 24 bit color Capture Width: 320 Capture Height: 240 Th...
by AmmarossDanan
Wed Jul 11, 2007 7:40 pm
Forum: ZoneMinder Previous Versions
Topic: ZM Problems with configure for libs avcodec/avformat
Replies: 2
Views: 1902

Yes, definately install from source. Much easier. :)

Code: Select all

svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
cd ffmpeg/
./configure
make
make install
make install-libs
by AmmarossDanan
Tue Jul 10, 2007 10:54 pm
Forum: ZoneMinder Previous Versions
Topic: Apache memory problems
Replies: 2
Views: 2055

What is your StartServers, MinSpareServers, and MinSpareThreads set to in your httpd.conf (prefork.c and worker.c modules)? Probably would be a good idea to crank them down a bit since you're really only hosting the ZM Console.