

Yes they do! Theirs is an IP camera.


Yes they do! Theirs is an IP camera.


Hi muusemuuse, this is meant to be a drop-in replacement to WiFi cameras (and therefore accessible to non-technical users, easy to use and easy to setup). Frigate is great, and we definitely recommend it if you have the time to get it up and running.
In regard to being able to use it without the app, that’s not possible unfortunately due to the end-to-end encryption that takes place. An application needs to be on the other end to decrypt things.
Our app is available through Obtainium if you do not like the Play Store. It is also reproducible, so you can verify to make sure it was derived from our mobile_client codebase.


I understand your concern. The way we designed the deployment tool was under the assumption people would be using a freshly-deployed cloud single-use server for it (as we assume they have no technical knowledge).
I’m not sure if a container is foolproof. There have been multiple CVEs in the past allowing processes to escape containers through kernel vulnerabilities. Although, I’m happy to put containers on our to-do list if this will help.
As for what the proper solution should be for advanced users, I personally am not sure. I’d need to research that further. We do try to provide things such as reproducible builds, which means if you build the code yourself using our reproducible build script, they’ll match byte-for-byte against our released artifacts. This at least guarantees that it was built from our repository’s code, although it does not guarantee the code itself is safe.
I think something that will help here is our planned third-party security audit, which hopefully will be sometime this summer.


Yes, we are working on such a video. I will follow up here once that is ready.


https://mozilla.github.io/cargo-vet/index.html
2.4 “Importing Audits” goes into these third party auditors (the registry).


I can’t speak to the account thing, I checked the guy you replied to and it seems like his is 3 months old, not yesterday.
I wanted to mention that we plan to get a third-party security audit by a reputable firm sometime this summer.


Thingino looks like a great option for changing firmware of IP cameras to be open-source, and is useful in local NVR-like setups! Our goal is to different: provide an end-to-end encrypted, easy-to-configure and easy-to-use WiFi camera.


To help mitigate that, we use Cargo.lock files to pin all of our dependencies checksums (integrity validation) until we want to upgrade. When we upgrade, we’re working on having Cargo Vet to manually go through (in addition to trusted third party auditors) to ensure the changed code isn’t malicious.


We’ve only tested with a few cameras, and it’s able to support that well.
We have work in progress for users. We use OpenMLS for end-to-end encryption and it allows for creating groups. We’re using that to allow multiple apps/devices to receive encrypted videos from the camera. We have the core function implemented, but haven’t added UI support in the app for it yet.


In theory, that should be possible. We haven’t tested it.


We like the Pi because:


Thanks for your interest!
We tried adding it on f-droid, but it seems like they have a backlog of projects to add. They haven’t gotten to test it out yet it seems.
This is why we now support Obtainium for people that do not wish to use Google Play. It can be hooked up to our mobile_client repository releases to pull the universal APK.
We do not charge anything for DIY. For our future offering, we have some information on the main page (secluso.com) of our site in section 4, along with what you would get.


Sorry about that! Is there anything specific I can answer?
The base runs on a Raspberry Pi Zero 2W. This is capable of running motion and AI detection (human/pet/vehicle). It supports live-streaming and motion/ai-detected events, which sends a 20 second video clip to the mobile app. All of this is end to end encrypted.
With DIY, you’re able to pick between an OV5647 and IMX219 sensor (Raspberry Pi Camera Module V1 and V2 respectively). With V1, it’s 1296x972. With V2, it’s 1640x1232 (97.4% of 1080p).


Hi kibblebits, please see below!
We’d be happy to add an option to disable auto update in our next release.
If you have any other ideas for features we can add or changes we should make, please let us know.


Thanks for the reply! Based on what I know about motionEyeOS, I would say the projects have different goals.
From MotionEyeOS’s website: “Get instant email notifications when motion is detected.”, “Save recordings to cloud services, network drives, or local storage. Automatic backup and archiving options.”
We differ because we specifically made this to not compromise on functionality. We offer push notifications, easy private access via our mobile app, and the cloud relay cannot decrypt videos.(whereas it seems if you were to use the cloud with MotionEyeOS, they would not be encrypted).
While you could go local in MotionEyeOS to avoid that, it would be more inconvenient for most people, and we wanted something that could be a non-feature-compromising private replacement to modern cameras that’s simple to setup and easy to use.


Bloef
Hi Bloef, this is meant to be a drop-in replacement to WiFi cameras (and therefore easy to use and easy to setup). A local NVR is great, and we definitely recommend it if you have the time to get one up and running.


Fair points. I appreciate the constructive criticism! Moving forward, we will improve on our documentation. In terms of review, we always review and test each other’s code (sometimes via other mode of communication), even if there weren’t any comments on the pull request.


Hi Brkdncr, thanks for the question!
We honestly do not have a concrete answer for the temp ranges. We’ve done some testing and made sure they stay under 150F in the 3D case shown in the picture.
We do not currently directly support solar/battery usage. You can probably DIY something together though!
For Software: We’ve started to thoroughly go through our dependencies by using the Cargo Vet tool, in addition to looking for unmaintained dependencies, dependencies that we can replace with a few lines of code, etc.
For Hardware: We’re using trusted hardware providers like Raspberry Pi to try to mitigate this.
Let me know if you have any other questions!


Those 11 commits were from a rebase-and-merge PR, which changes the date from the original commit. Notice how there’s a week gap between those and the prior commits on the main branch.
The only thing AI is used on in this project is strictly for user interface work (our website, the front-end for the mobile app, the front-end for the deploy tool). We carefully vet anything like that.
If you’re technical, you could probably put together a locally hosted server on your Linux machine and use Tailscale or something like that, it should work fine with the code as-is. Our server binary is in the runtime-binaries zip in the core GitHub release.