Search found 31 matches

by vraa
Mon May 19, 2014 8:09 pm
Forum: ZoneMinder 1.27.x
Topic: security contact
Replies: 3
Views: 2266

Re: security contact

Or drop by the irc channel

irc.freenode.net #zoneminder
by vraa
Thu May 08, 2014 3:41 am
Forum: ZoneMinder 1.27.x
Topic: Multi-site installation & Push vs Pull
Replies: 1
Views: 1825

Re: Multi-site installation & Push vs Pull

Try downloading and installing it yourself and it will answer many questions 1) ZM requires the IP address and port of the stream you are trying to "pull" (I had to port forward ports in my remote locations so they could be accessed by my zoneminder machine running in a colo in a rack) 2) ...
by vraa
Wed Jul 04, 2012 8:34 pm
Forum: ZoneMinder 1.25.x
Topic: Is ZoneMinder still under active development?
Replies: 8
Views: 5661

Re: Is ZoneMiinder still under active development?

You can do git push into mastertheknife's repo perhaps?

https://github.com/mastertheknife/ZoneMinder-kfir
by vraa
Tue Jun 26, 2012 2:46 am
Forum: ZoneMinder 1.25.x
Topic: Is ZoneMinder still under active development?
Replies: 8
Views: 5661

Re: Is ZoneMiinder still under active development?

Yes it is

irc.freenode.net #zoneminder
by vraa
Sat Jun 09, 2012 10:00 pm
Forum: ZoneMinder 1.24.x
Topic: Daily movie
Replies: 22
Views: 14120

Re: Daily movie

If you go to http://www.zoneminder.com/forums/viewto ... 1&start=15 you will see I fixed the issue and did some alterations on the script
by vraa
Sat Jun 09, 2012 5:18 am
Forum: ZoneMinder 1.25.x
Topic: AXIS M1113 H.264
Replies: 8
Views: 4643

Re: AXIS M1113 H.264

http://www.zoneminder.com/wiki/index.php/How_to_stream_h264_with_ffmpeg_from_an_Axis_P3343 http://www.zoneminder.com/wiki/index.php/How_to_setup_H.264_streaming_with_Ffmpeg_monitor_from_an_Axis_P3343-VE-12mm_camera http://pastebin.com/p4EacN6L Some cursory googling leads me to believe u should try ....
by vraa
Fri Jun 08, 2012 6:27 pm
Forum: User Contributions
Topic: Daily alarm events video script
Replies: 24
Views: 18803

Re: Daily alarm events video script

This is my code now I've added lots of small tricks and what not so you can either use it as a cron script or you can use it as a one time thing if you need a specific days video #!/bin/bash # use this script for creating alarm video-files with zoneminder 1.25.0 # by nightcrawler # edited by vraa (u...
by vraa
Wed Jun 06, 2012 10:24 pm
Forum: User Contributions
Topic: Daily alarm events video script
Replies: 24
Views: 18803

Re: Daily alarm events video script

I haven't tested this out, just posting work in progress I have split up the list generation into one for loop and the video generation into another for loop #!/bin/bash # use this script for creating alarm video-files with zoneminder 1.25.0 # by nightcrawler # edited by vraa (ubuntu friendly, zonem...
by vraa
Wed Jun 06, 2012 10:08 pm
Forum: User Contributions
Topic: Daily alarm events video script
Replies: 24
Views: 18803

Re: Daily alarm events video script

I changed the way the regular expressions work when enumerating the camera list and names Here is the most recent example of my code so far, I'll be updating it in a little bit again after I figure out how to create the sorted .list files en masse before starting the encoding en masse. #!/bin/bash #...
by vraa
Wed Jun 06, 2012 8:51 pm
Forum: User Contributions
Topic: Daily alarm events video script
Replies: 24
Views: 18803

Re: Daily alarm events video script

I am having some trouble with my number of detected monitors Unfortunately, my monitors are named as follows: Monitor-1 Monitor-2 Monitor-3 Monitor-5 This causes this line cameraList=(`ls /usr/share/zoneminder/events/ | grep '[0-9]'`) To return vraa@vkcsvr-zm49264:/tmp/alarmvideos$ ls /usr/share/zon...
by vraa
Wed Jun 06, 2012 5:34 pm
Forum: User Contributions
Topic: Daily alarm events video script
Replies: 24
Views: 18803

Re: Daily alarm events video script

Hi vraa, Big thanks for finding an simple sollution for the 1000 frames sorting. I will use that :) And the X264 version is an nice recode option :) I also have an .FLV version for integrating with and website. but X264 is an good alternative for mpeg coding. nice job! Thanks Actually I re did the ...
by vraa
Tue Jun 05, 2012 7:19 am
Forum: User Contributions
Topic: Daily alarm events video script
Replies: 24
Views: 18803

Re: Daily alarm events video script

Turned it into x264, and it still works #!/bin/bash # Use this script for creating alarm video-files with zoneminder 1.25.0 # by Nightcrawler # UPDATE the archive directory (YOURARCHIVEDIRECTORY) #make temp directory mkdir -p /tmp/alarmvideos # Enumerate existing ZoneMinder Monitors cameraname=(`ls ...
by vraa
Tue Jun 05, 2012 6:32 am
Forum: User Contributions
Topic: Daily alarm events video script
Replies: 24
Views: 18803

Re: Daily alarm events video script

Any update on the 1000+ frame issue? I will post my results in a bit, if I forgot someone remind me But I figured out a way to get around the 1000 frame issue, I use "sort -V" I am working on speeding up the video generation, It seems mencoder or libavc only uses 1 core for mpeg4 encoding...
by vraa
Tue Jun 05, 2012 3:49 am
Forum: User Contributions
Topic: Daily alarm events video script
Replies: 24
Views: 18803

Re: Daily alarm events video script

Any update on the 1000+ frame issue?