this post was submitted on 13 Nov 2024
177 points (97.3% liked)

Ask Lemmy

26875 readers
2330 users here now

A Fediverse community for open-ended, thought provoking questions

Please don't post about US Politics. If you need to do this, try !politicaldiscussion@lemmy.world


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 1 year ago
MODERATORS
 

It would be amazing if it doesn't disintegrate if it rains, too.

you are viewing a single comment's thread
view the rest of the comments
[–] ShareMySims@sh.itjust.works 11 points 2 days ago (14 children)

Is this something a complete novice could do, with reasonable effort and cost? If so would you be able to eli5, or point me in the direction of somewhere that does?

Ideally, for my current situation anyway, I'd like to set up a camera indoors by a window (with IR switched off and a proper mount) and be able to see what it sees from a device (phone pc or even dedicated pad if it helps with security) in the other room, and if it can also record and save the video locally for me to be able to access from the remote device, that'd be good too. Privacy and security of the data are top priority.

Every time I start looking in to it my brain gets completely overwhelmed by options and information and scrambles, and I have to back away πŸ˜‘ I'd love for there to be a way to set this up that was near as straightforward as the privacy abusing options..

[–] IchNichtenLichten@lemmy.world 5 points 2 days ago* (last edited 2 days ago) (9 children)

It's not too difficult, I figured it out and I eat crayons.

Here's the software I use but there are other options: https://github.com/BreeeZe/rpos - That runs on the camera Pi and provides the video stream.

I use a Pi, a camera module like this https://www.raspberrypi.com/products/raspberry-pi-high-quality-camera/ and a suitable lens. You can get cheaper camera modules, IR modules, etc.

Also, something like this to power it: https://www.tp-link.com/us/business-networking/omada-switch-unmanaged/ds105gp/ You could just use a regular switch and power the Pi with a power adapter if that works better. My cameras are all ceiling mounted so having one cable for data and power made sense for me.

I use this to split the ethernet into power and data when it reaches the Pi: https://www.amazon.com/UCTRONICS-PoE-Splitter-USB-C-Compliant/dp/B087F4QCTR/130-2310467-3870744

Then I have this running on a Linux VM to collect the camera feeds and display them in a web browser: https://github.com/motioneye-project/motioneye

You'll also need a case, my solution was to buy a metal Pi case and mount the module onto that, feeding the ribbon cable back into the case.

If you decide to go ahead and need help, just ask.

[–] ShareMySims@sh.itjust.works 5 points 2 days ago (8 children)

Oh wow, thanks so much for all the info, I really appreciate it! I'm bookmarking you reply and all the links, but it's a bit much for me to process right now lol (I saw your comment about pretty much what I want to set up and just had to ask, fully meaning to get in to it, but it's been a long morning and my brain is now mush)

Just to give you an idea, I've never set up or even used a Pi or used Linux, I've done very basic pc building and troubleshooting, but have no programming knowledge, so when I said novice I meant it πŸ˜‚ I'm mostly good at following directions as long as they're clear. Are there any manuals that would tell me how to put all the different parts you mentioned together?

[–] IchNichtenLichten@lemmy.world 2 points 2 days ago* (last edited 2 days ago) (1 children)

There are plenty of guides but I just took it step by step. The links I provided have instructions for each bit of software needed. You'll need to be able to do things like flash the OS to a SD or USB drive and then be able to ssh into the Pi to install the camera software. Start here: https://www.raspberrypi.com/software/

There's no programming skill needed but you should be comfortable with using the terminal, or at least be willing to learn. You don't need to install a OS with a desktop, everything is done via the terminal.

After that's done you can use VLC to view the feed and check it's working before installing motioneye on a server. You just get the IP address of the camera and give the URL to VLC like this: rtsp://xxx.xxx.xxx.xxx:8554/h264

If you look at the whole thing in one go, it's overwhelming, but if you break it into chunks it's not too bad and it's a good learning opportunity, if that's your thing.

[–] ShareMySims@sh.itjust.works 2 points 2 days ago (1 children)

If you look at the whole thing in one go, it’s overwhelming, but if you break it into chunks it’s not too bad and it’s a good learning opportunity, if that’s your thing.

This is very encouraging and helpful, I will try to keep it in mind! Do I just go in the order of the links you posted in the previous reply?

Also just to make sure I understand correctly - at the end of it I should have a camera setup that I can access, via VLC, from the device of my choosing over ethernet/intranet?

Thanks again for taking the time to talk me through this.

[–] IchNichtenLichten@lemmy.world 2 points 2 days ago (1 children)

Do I just go in the order of the links you posted in the previous reply?

Yes. Get a working camera feed and go from there. For that, tackle the hardware side first - Pi, camera, power/ethernet, case, storage for the OS. Then install the OS and the camera software and test it. Mine are all indoors so you'll have to see what kind of cases are weatherproof if you're using it outside.

Also just to make sure I understand correctly - at the end of it I should have a camera setup that I can access, via VLC, from the device of my choosing over ethernet/intranet?

Exactly. VLC will be fine if you only want to view one camera. If you want to add more, do recording/motion detection, view them in a browser, etc. then MotionEye on a server works but there are other options. I know that the Synology NAS' DSM OS has its own solution for managing all that stuff.

Great, thank you so much! I'm going to do my best to actually get it done this time, I'm already much closer to figuring it out than I've been before.

load more comments (6 replies)
load more comments (6 replies)
load more comments (10 replies)