Search results

  1. P

    Long Shot - Concord DVR - QV5000 - Password/system reset

    Yeah, hard to set up a VPN for someone though. I need to figure that out. Hopefully his nas will be able to do it. It’s prettty old. Or I’ll have to build a pi for him.
  2. P

    Long Shot - Concord DVR - QV5000 - Password/system reset

    Yeah I was guessing that as well. I did manage to finally hear from the vendor....but while waiting I did actually manage to “break” into it using a master password. Scarily easy actually.
  3. P

    Long Shot - Concord DVR - QV5000 - Password/system reset

    Concord 4 Channel HD DVR Package - 4x1080p Cameras | Jaycar Electronics New Zealand Purchased one of these for brother in law yesterday. Had some issues setting it up (with connected screen, splash would show up, then turn off, suspected it was pushing video out VGA not hdmi). Finally got it...
  4. P

    CameraEvents Service - Dahua Events to mqtt

    Not sure. POSs not. They might all just get identified as Ivs. Can you filter on the content is they’re all in the same topic? My camera doesn’t tend to do face recognition so I haven’t played with it. I just use line detection and trip wire (and video motion)
  5. P

    CameraEvents Service - Dahua Events to mqtt

    How’d you get on?
  6. P

    AI Search - iDMSS equivalent?

    i was using a screen on my 5216 nvr today and had a look at a the ai search. This would be the same as what is viewable by the web right? But is there an equivalent when using iDMSS? Searching each cam for its seems a poor subsititute (and doesn’t seem to work the same as motion detect).
  7. P

    CameraEvents Service - Dahua Events to mqtt

    I've just updated the readme and added run instructions. I probably wouldn't use my entry of ${BASEPATH}/ha-shared/cameraevents/ since there's a variable in there and it defines a fixed path. But if you make a cameravents dir, put the config in there, then run the docker run -v...
  8. P

    CameraEvents Service - Dahua Events to mqtt

    Just the config.ini The problem with most docker containers is they can’t prepopulate the host volumes with a default config. So always have to revert to this sort of manual config to start with
  9. P

    CameraEvents Service - Dahua Events to mqtt

    cameraevents: container_name: cameraevents depends_on: - mosquitto environment: - ARCH=amd64 - BASEPATH=/hdd/docker-data #env_file: # - /hdd/docker-data/env/arch.env image: psyciknz/cameraevents restart: always networks: - ha volumes: - ${BASEPATH}/ha-shared/cameraevents/:/opt/cameraevents/conf...
  10. P

    CameraEvents Service - Dahua Events to mqtt

    That's great. I might, cos it annoys me, make the detected "things" filterable. ie I get "smoke" when it's fuzziness on the camera, so I will exclude those. That will just leave Human and Vehicle.
  11. P

    CameraEvents Service - Dahua Events to mqtt

    The lack of details suggests your camera it not a high enough firmware, or just doesn’t post the json that I saw in mine. Do you get an event fired? As it should just end up like a video motion event which also has very little details.
  12. P

    CameraEvents Service - Dahua Events to mqtt

    https://hub.docker.com/r/psyciknz/cameraevents Here’s a built and image. The dockerfile cross needs you to run the build.sh which creates a dockerfile per architecture by replacing some txt. But it also needs qemu on your build machine.
  13. P

    The Raspberry PI thread - What do you do with yours?

    I think I have 5 in total. And old 2 basically as a temp sensor, need to replace it. And 2b as a ups monitoring machine and has shairport on it (airplay server) Another 2b with flightradar and planefiner on it. A 3 with docker running tt-rss and a bunch of media apps A 3b+ (new today) that I'll...
  14. P

    CameraEvents Service - Dahua Events to mqtt

    Can you post the model of the nas....or another container you use. I should have amd64, arm32v6 (rPi3) and arm64x7 (Odroid C2). hopefully one of those is usable.
  15. P

    CameraEvents Service - Dahua Events to mqtt

    Try this then: Docker Hub I've only pushed the amd64 version. Are you sure it's not arm64?
  16. P

    CameraEvents Service - Dahua Events to mqtt

    W what architecture does the nas use? arm32, arm64 or amd64?
  17. P

    Viewing IVS recordings on mobile

    Is this the case with version 3 of iDMSS? It has Smart recording, but it doesn't seem to work anywhere near like the Motion detect which has a nice highlighted area
  18. P

    Dahua NVR Connected Camera, using 37777 and not the LAN port number

    Yeah I think the new one is. Something like 4431-e-as
  19. P

    Dahua NVR Connected Camera, using 37777 and not the LAN port number

    And it seems to go offline every couple of days. All the others seem to be connected to their port numbers (which allows the navigate from the registration page work 100080 etc). But thing one only seems to show up on 37777. Any ideas why, and how to fix? It's a 4431 (I have 3) and this one...
  20. P

    CameraEvents Service - Dahua Events to mqtt

    It was pretty unstable. Quite messy, and never got it to the point where I could release it. And after switching to python it worked much more reliably
  21. P

    CameraEvents Service - Dahua Events to mqtt

    Hmm for Online/Heartbeat I do post: self.basetopic +"/$online" self.basetopic +"/$heartbeat" Ahh Found it: self.client.publish(self.basetopic +"" + device.Name + "/alerts/state",state) (line 415
  22. P

    CameraEvents Service - Dahua Events to mqtt

    I’m not sure what the out one is. If one of your camera called out? Or has a channel called out? And the heartbeat/online should only be on the CameraEvents high level. Online should go true on start and gonfalse if the service is disconnected. But I must have missed a retain in it, as...
  23. P

    CameraEvents Service - Dahua Events to mqtt

    SO these are single cameras? Does it work any better with isNVR=False? And have you got the python file you're running so that I can look at incorporating your changes you've had to make.
  24. P

    CameraEvents Service - Dahua Events to mqtt

    The version of code you're now running. And it would be useful to know the cam/firmware version - obviously between your cam and my nvr the API has changed.
  25. P

    CameraEvents Service - Dahua Events to mqtt

    DO Do you want to post your version to me, and I'll look at putting some of those changes in and dealing with the change in API (the 1/0 thing) I should also make "do you want an image" configurable for if you're not using that function, they're pretty large to be chucking around mqtt for no...
  26. P

    CameraEvents Service - Dahua Events to mqtt

    it seems to not be getting an image. I assume this might be related to that last change I had to make (listed in the readme, that for my specific NVR I have to put channel (index)+1. So for a snapshot if it's index=0 (as per your example) I have to ask the NVR for channel=1. Yours is...
  27. P

    CameraEvents Service - Dahua Events to mqtt

    So this section crossData = json.loads(Alarm["data"]) _LOGGER.info(Alarm["Code"] + " received: " + Alarm["data"] ) if "Direction" not in crossData: direction = "unknown" else: direction = crossData["Direction"] region = crossData["Name"] object = crossData["Object"]["ObjectType"] regionText =...
  28. P

    CameraEvents Service - Dahua Events to mqtt

    Hmm You don't get a json string with the CrossLineDetection? Content-Type: text/plain Content-Length:905 Code=CrossLineDetection;action=Stop;index=0;data={ "Class" : "Normal", "CountInGroup" : 1, "DetectLine" : [ [ 3843, 5677 ], [ 6512, 5136 ] ], "Direction" ...
  29. P

    CameraEvents Service - Dahua Events to mqtt

    Hmm are you running python 3? I've probably written it in 2.7. You can try changing the case of configparser....if it's it's changed any of the methods it may not help you.
  30. P

    CameraEvents Service - Dahua Events to mqtt

    p You're running in python (not docker?) pip install ConfigParser Same with everything else in that requriements.txt. I believe there's a command that will take the requirements.txt and go get everything it needed.