This repository was archived by the owner on Apr 11, 2025. It is now read-only.
Replies: 2 comments 8 replies
|
Is there anything else in the logs? There's no actual error there. |
8 replies
This comment has been hidden.
This comment has been hidden.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I've got a couple of HikVision cameras and when I test the motion detection on one of the cameras (Gate) it seems fine, saves the image to the capture folder and it there is detected object does it's magic. The problem is that my other camera (Driveway) crashes SynoAI. The only difference between the cameras is that one is an 8K and the other a 5K camera. I can force the crash by running the test action rule.
Below is the config file and the error:
`{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"Url": "http://192.168.0.100:5000",
"User": "hidden",
"Password": "hidden",
"MinSizeX": 100,
"MinSizeY": 100,
"DaysToKeepCaptures": 14,
"SaveOriginalSnapshot": "Always",
"AI": {
"Type": "DeepStack",
"Url": "http://192.168.0.100:83"
},
"Notifiers": [
{
"Type": "Webhook",
"Url": "http://server/images",
"Method": "POST",
"Field": "image"
}
],
"Cameras": [
{
"Name": "Gate",
"Types": [ "Person", "Car" ],
"Threshold": 5,
"MinSizeX": 100,
"MinSizeY": 100
},
{
"Name": "Driveway",
"Types": [ "Person", "Car" ],
"Threshold": 20,
"MinSizeX": 200,
"MinSizeY": 200
},
]
}`
All reactions