Search found 337 matches

by snake
Sat Feb 18, 2017 5:24 pm
Forum: Feature Requests
Topic: API call for overlaying text information
Replies: 2
Views: 3494

Re: API call for overlaying text information

The curl format should be reusable to change any variable in the Monitor object. curl -b cookies.txt -XPUT http://server/zm/api/monitors/1.json -d "Monitor[LabelFormat]='<your format>'" I tested this, and it worked. But, it required a restart of Zoneminder for the text to appear. I found ...
by snake
Thu Jan 05, 2017 5:04 pm
Forum: ZoneMinder 1.30.x
Topic: Zm 1.3 is loosing one WLAN camera
Replies: 17
Views: 9767

Re: Zm 1.3 is loosing one WLAN camera

I'm having a similar problem. Ubuntu PPA 1.30. I did not have this problem with 1.28. Cameras did drop out in 1.28 but would come back on their own. The drop outs may be due to poor wiring causing the camera to restart. One camera drops out in 1.3, but does not come back. Killing the zmc process of ...
by snake
Sun Nov 27, 2016 7:34 pm
Forum: ZoneMinder 1.28.x
Topic: What OPTIONS_FFMPEG are supported by libav/ffmpeg?
Replies: 3
Views: 6390

Re: What OPTIONS_FFMPEG are supported by libav/ffmpeg?

I looked in the ffmpeg docs and I see allowed_media_types here: https://www.ffmpeg.org/ffmpeg-all.html#rtsp It seems like these rtsp flags should work. But I tried some other flags here such as stimeout which I got a response in ZM logs that ffmpeg didn't understand that option. Maybe someone who kn...
by snake
Sun Nov 27, 2016 3:39 am
Forum: User Contributions
Topic: Working QSee/Swann/Zmodo DVR support! - Updated 2013-04-21
Replies: 107
Views: 257852

Re: Working QSee/Swann/Zmodo DVR support! - Updated 2013-04-21

I wrote up something on Zmodopipe in the wiki.

Might help someone.

https://wiki.zoneminder.com/Zmodopipe
by snake
Thu Jun 02, 2016 9:05 pm
Forum: ZoneMinder 1.28.x
Topic: Script for Deleting Old Exported Video Folders
Replies: 2
Views: 3360

Re: Script for Deleting Old Exported Video Folders

Previous delete code only walked through as many array members as needed until capacity was under. This will pass through the complete array, if capacity over. This way, the first few folders are not the only ones deleted from. Had issue with if syntax, when moving things. All if must be completed w...
by snake
Sat May 21, 2016 6:15 am
Forum: ZoneMinder 1.28.x
Topic: Script for Deleting Old Exported Video Folders
Replies: 2
Views: 3360

Re: Script for Deleting Old Exported Video Folders

Here is the other script I made to put created videos exported by the filter into daily directories. I am no programmer, so bash away. From https://wiki.zoneminder.com/Dummies_Guide #!/bin/bash #list of all current camera folders FOLDERS=( "/videodir1/monitor1/" "/videodir1/monitor2/&...
by snake
Sat May 21, 2016 6:09 am
Forum: ZoneMinder 1.28.x
Topic: Script for Deleting Old Exported Video Folders
Replies: 2
Views: 3360

Script for Deleting Old Exported Video Folders

#!/bin/bash FILESYSTEM=/dev/sdc1 MAXCAPACITY=90 #deprecated #DIRTODEL=/videodir/ LOGFILE=/videodir/log #delete oldest two folders FILESTODEL=2 #array of all folders to delete old folders from. FOLDERS=( "/videodir/monitor1/" "/videodir/monitor2/" ) for folderstodel in "${FO...