I couldn’t find a post in this community about cameras so I figured I’d make one. Requirements:

  • No “sign up” required to record video
  • Video is stored locally
  • Video is in a non-propriatary format
  • Can work offline

Optional/Discussion Points:

  • Can wireless connectivity be hardware disabled
  • Can auto-update be disabled
  • Does the device try to “phone home” if it is connected to wifi
  • Disk encryption would be nice but I doubt that’ll be an option for anything other than self-hosted stuff

Does anyone know about Lorex (it seems more privacy centered)?

I’m highly technical, so feel free to mention self hosted raspberry pi soltuions as well.

  • @throw4w4y5@sh.itjust.works
    link
    fedilink
    310 months ago

    if you’re this concerned about the privacy of your doorbell camera then make your own solution with a raspberry pi. then you’re in full control of the device and data.

    anything else can be updated to send video elsewhere, promise privacy features it doesn’t have, be bought out and shareholders demand data mining, or be hacked.

    • @socsa@lemmy.ml
      link
      fedilink
      010 months ago

      Which is once again, the reason why understanding your threat surface properly so that you set up security enclaves which let you get value from cloud services without sacrificing privacy is more important than ever. Honestly, these posts frustrate me a bit. People are going to give up real, tangible security benefits of these modern security services over the spectre of relatively minor privacy issues which can be almost entirely mitigated with some pretty simple best practices that anyone interested in security should be doing anyway.

        • @socsa@lemmy.ml
          link
          fedilink
          2
          edit-2
          10 months ago

          Relatively minor from the perspective that the actual information which will leak from a Nest camera isn't really that unique. And as a network device, it's fairly simple to isolate and secure. The video a doorbell camera shoots is generally of "in view" public space, already visible to any camera. Your identity is already likely tied to the installation address where you've paid for the account with your credit card, which is also probably tied to that same address. If these things are not true, then you should obviously defer to your individual threat profile and disregard what I say.

          The worst part of it is that these doorbell cameras could provide a state actor with a daily face shot database, but if you control it, then it can also be an adversarial source to that end.

          But "minor" for me, is different from "minor" for you. For me, petty crime, and maybe some local cops with beef are a much bigger deal than hiding from the feds. That's my whole point here. Know your own threat profile. If officer Barbrady kicks down your door and violates your rights, he's going to take your local video server, but he's much less likely to get access to some random silicon valley colo farm. Don't fear the cloud, understand how to use it as a tool within your own threat profile.

  • Mikelius
    link
    fedilink
    310 months ago

    I always recommend Amcrest for anything related to cameras. Idk about the doorbell since I don't have that specifically, but the cameras are completely local (no cloud server acting as the relay) and no sign up required unless you use their home app (I use the view pro app to avoid signups).

    Reolink doesn't require signups, but their cameras generally require internet from my experience, as they use their own cloud servers as relays, which would mean they can't work offline like you're wanting.

  • @ErwinLottemann@feddit.de
    link
    fedilink
    110 months ago

    unifi doorbell does this. you are not required to connect it to the internet. it is wifo only though (the doorbell itself)

  • keet
    link
    fedilink
    110 months ago

    A RPi option is likely your best bet. I'm currently building my own setup using MotionEye and a few Pi Zeros. I'll be looking into different software since Motioneye is no longer updated though. Just FYI, I'd avoid the v3 camera module for now, as a lot of software doesn't support it yet and it can't use the legacy camera stack.

  • @socsa@lemmy.ml
    link
    fedilink
    0
    edit-2
    10 months ago

    As a tangent, for me the entire utility for this stuff is cloud integration and alerts. Otherwise the only use of the camera is sending your insurance company videos of the break-in. This is one of those places where I am willing to give up a bit of privacy in a controlled way for the ability to get alerts in real time in case I need to call emergency services while away from home. Or tell my wife the delivery driver left the gate open and to close it so the dog doesn't get out.

    To be honest, if you have a good security framework to begin with, there's no reason why a ring camera is super dangerous.

    • TrenchcoatFullOfBats
      link
      fedilink
      110 months ago

      You don't have to give up privacy for this, or voluntarily give your data to a giant corporation with a track record of abusing their customer's privacy and giving your video footage to police without your consent.

      I have 5 Amcrest PoE cameras that have been configured to not "call home". The cameras have built-in web servers that allow you to configure them without being forced to install an app or make a cloud account.

      All of the built in detection stuff has been turned off because the feeds from the cameras go to Frigate NVR, which does all of the detection stuff with the help of a Coral TPU. I have it running as an add-on to Home Assistant OS, but it can also run separately in a docker container.

      Frigate is set to detect certain things, like "person", "car", "dog", etc. If it detects those things, it records a clip and takes a snapshot. Both are sent as notifications to my phone via a Home Assistant automation. If I'm not at home, I pay $65/year for Nabu Casa, which gives me secure remote access to my Home Assistant install and also helps fund Home Assistant development.

      • @CmdrShepard@lemmy.one
        link
        fedilink
        English
        110 months ago

        Are you running the cameras by themselves or do you also use the Amcrest NVR? I bought a PoE kit with the NVR but find it very clunky to use and have yet to figure out how to transfer video clips off of it (USB flashdrive only?). I've been interested in Frigate and the like but have yet to really dig into it. I'm also running a server with Plex and HA with lots of storage which would work for storage provided I buy a PoE switch.

        • TrenchcoatFullOfBats
          link
          fedilink
          1
          edit-2
          10 months ago

          I only use Frigate. All of the Amcrest stuff is turned off.

          Each of the cameras have two video streams. The "live" stream is set to 1080p, and the "sub" stream is set to 720p. The sub stream is what Frigate uses for detection. Here is a sample of what a camera config would look like in the frigate.yml file:

          cameras:
            back:
              ffmpeg:
                inputs:
                  - path: rtsp://camera-username:camera-password@camera-ip-address:554/cam/realmonitor?channel=1&subtype=2
                    roles:
                      - detect
                      - record
              detect:
                width: 1280
                height: 720
          

          My HA runs in a Proxmox VM with 4 vCPUs, 4GB of RAM and 128GB storage. The VM also has access to a network drive, which is where nightly backups are stored.

          By default, the HAOS Frigate addon will store recordings on the host machine (you can define any volume if you're running Frigate in docker), and you can set "event" retention in the frigate config file - default is 10 days. You can download any clip or snapshot directly from the Frigate UI to whatever device you are using. OR, if your setup is similar to mine, you can pull from backup.

          My nightly backup to my network drive includes the frigate folder with the recordings and snapshots, which is also set to retain 10 days/backups, and finally there is a weekly Borgbase backup of that network folder to a server on another continent, so I don't feel like I need any kind of dedicated storage hardware - normal backup procedures work just fine!

          With this setup, CPU usage never goes above around 35% (keep in mind that I have a Coral TPU, which takes all the detection load off of the CPU) and with the configured Frigate retention policy, storage usage for the entire VM never exceeds 50% of the total available space.

          This setup has been running flawlessly for almost 3 years now. Detection is immediate, as are the push notifications. Very happy with it!