Search found 2925 matches

by iconnor
Tue Apr 09, 2024 1:35 pm
Forum: ZoneMinder 1.36.x
Topic: Corrupted Stats table (dropped - need to recreate?) [SOLVED]
Replies: 3
Views: 401

Re: Corrupted Stats table (dropped - need to recreate?)

You can likely do without it, but you will want to turn off trying to write to it under Options->Logging->RECORD_EVENT_STATS

You can find the table definitions in /usr/share/zoneminder/db/zm_create.sql
by iconnor
Mon Apr 08, 2024 10:43 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: 1.37.57: Unable to connect IP camera as monitor
Replies: 26
Views: 2859

Re: 1.37.57: Unable to connect IP camera as monitor

It means that we don't recognize the make/model of the camera and hence don't know what to do with it. You should try the onvif probe.
by iconnor
Mon Apr 08, 2024 2:01 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: MySQL Indexes of Logs table
Replies: 7
Views: 1693

Re: MySQL Indexes of Logs table

It should not exist.
1.37.58 will remove it and add a component index.
by iconnor
Sun Apr 07, 2024 9:32 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: MySQL Indexes of Logs table
Replies: 7
Views: 1693

Re: MySQL Indexes of Logs table

THe only indexes should be as follows: CREATE INDEX `Logs_TimeKey_idx` ON `Logs` (`TimeKey`); CREATE INDEX `Logs_Level_idx` ON `Logs` (`Level`); We can add more, but as I was saying mysql won't use them unless we also change the ORDER BY. What we probably need to do is REMOVE the sorting and let boo...
by iconnor
Sun Apr 07, 2024 9:28 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: Cleaning more than 1 drive in one filter?
Replies: 1
Views: 594

Re: Cleaning more than 1 drive in one filter?

No it will only look at one of them for the DiskPercent part. Definitely needs improvement.
by iconnor
Sun Apr 07, 2024 2:43 pm
Forum: ZoneMinder 1.36.x
Topic: zmc is saving empty files
Replies: 9
Views: 1046

Re: zmc is saving empty files

No they have to go in Source->Options
by iconnor
Sun Apr 07, 2024 2:40 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: MySQL Indexes of Logs table
Replies: 7
Views: 1693

Re: MySQL Indexes of Logs table

It does not makes sense to search logs without specifying a time range, hence the TimeKey index is very useful. I don't understand why you are asking to remove indexes and also complaining about the speed of searching through millions of records. Language barrier I assume. I agree that an index on t...
by iconnor
Sun Apr 07, 2024 2:32 pm
Forum: ZoneMinder 1.36.x
Topic: Installation
Replies: 1
Views: 325

Re: Installation

Download page results has been fixed.

Here is my youtube channel. Any of the install videos on any version should help as the steps are the same regardless.

https://www.youtube.com/channel/UCDKfmv ... 6rO2aj5Wlg
by iconnor
Wed Apr 03, 2024 6:43 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: ERR Could not send packet
Replies: 3
Views: 774

Re: ERR Could not send packet

It is ffmpeg complaining that it doesn't like the data. Sometimes we see this if the cpu can't keep up.
by iconnor
Mon Apr 01, 2024 1:17 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: 1.37.57~20240331.14-focal amd64 no console tab in navbar
Replies: 2
Views: 699

Re: 1.37.57~20240331.14-focal amd64 no console tab in navbar

We need to also check for existence of any monitors.
by iconnor
Fri Mar 29, 2024 12:39 pm
Forum: ZoneMinder 1.36.x
Topic: zmc is saving empty files
Replies: 9
Views: 1046

Re: zmc is saving empty files

03/28/24 06:34:05.023009 zmc_m30[2226615].INF-zm_ffmpeg.cpp/69 [Could not find codec parameters for stream 0 (Video: h264, 1 reference frame, none): unspecified size
Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options]
by iconnor
Thu Mar 28, 2024 11:01 pm
Forum: Mobile Apps and Event Server
Topic: zmNinja, ES+ML support discontinuation notice (in advance) : EOY 2021
Replies: 59
Views: 2371735

Re: zmNinja, ES+ML support discontinuation notice (in advance) : EOY 2021

https://f-droid.org/forums/topic/zmninj ... r-android/

Not really. We can likely fix the licensing but I don't think anyone wants to take on the build pain.

We do already provide .apks.
by iconnor
Thu Mar 28, 2024 1:03 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: 1.37.56~20240320111801-jammy - Unable to save monitor settings
Replies: 22
Views: 3286

Re: 1.37.56~20240320111801-jammy - Unable to save monitor settings

Interesting, yeah int() is invalid funny that it works here, must be a change to php.
Try changing it to (int)$range or intval($range)
by iconnor
Tue Mar 26, 2024 10:54 pm
Forum: ZoneMinder 1.37.x Development Branch
Topic: MySQL Indexes of Logs table
Replies: 7
Views: 1693

Re: MySQL Indexes of Logs table

Wouldn't remove them. Might add more.