{"id":18609046,"url":"https://github.com/antranapp/raspberrypi-babyphone","last_synced_at":"2026-04-25T12:33:46.214Z","repository":{"id":95338115,"uuid":"116013463","full_name":"antranapp/RaspberryPi-Babyphone","owner":"antranapp","description":"Simple installation scripts to transfrom a Raspberry Pi + Camera Module into a Baby Montor ","archived":false,"fork":false,"pushed_at":"2018-01-05T16:48:16.000Z","size":7049,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-16T22:34:37.520Z","etag":null,"topics":["babycam-monitor","babyphone","camera","raspberry-pi","raspberry-pi-3","raspberry-pi-camera"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/antranapp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-02T12:35:10.000Z","updated_at":"2025-02-08T22:45:31.000Z","dependencies_parsed_at":"2023-04-03T16:02:12.965Z","dependency_job_id":null,"html_url":"https://github.com/antranapp/RaspberryPi-Babyphone","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/antranapp/RaspberryPi-Babyphone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antranapp%2FRaspberryPi-Babyphone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antranapp%2FRaspberryPi-Babyphone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antranapp%2FRaspberryPi-Babyphone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antranapp%2FRaspberryPi-Babyphone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antranapp","download_url":"https://codeload.github.com/antranapp/RaspberryPi-Babyphone/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antranapp%2FRaspberryPi-Babyphone/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32262801,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["babycam-monitor","babyphone","camera","raspberry-pi","raspberry-pi-3","raspberry-pi-camera"],"created_at":"2024-11-07T03:04:59.293Z","updated_at":"2026-04-25T12:33:46.156Z","avatar_url":"https://github.com/antranapp.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"Babyphone/Baby Monitor with Raspberry Pi\n\nI was looking for a way to build a babyphone using a raspberry pi. My main objective is a quick \u0026 dirty solution so that I can monitor my child while he is sleepling.\n\nI found some related projects:\n\n* [https://github.com/ivadim/fruitnanny](https://github.com/ivadim/fruitnanny): use webrtc, nice case design, night vision\n* [https://kamranicus.com/guides/raspberry-pi-3-baby-monitor](https://kamranicus.com/guides/raspberry-pi-3-baby-monitor): use picam, adaptive streaming with hls\n* [https://www.element14.com/community/community/raspberry-pi/raspberrypi_projects/blog/2016/04/25/noir-v2-video-streaming-baby-monitor](https://www.element14.com/community/community/raspberry-pi/raspberrypi_projects/blog/2016/04/25/noir-v2-video-streaming-baby-monitor)\n\nFruitnany seems to be a completed project and should work well but I couldn't make it work with my both RPi2 \u0026 RPi 3. No video is shown.\n\nSo I tried the picam solution and it worked pretty well. The only drawback is the stream lags 3-4 seconds behind. But for my usecase, it is not a big problem.\n\nThis project aims to create a simple installation script to install the required softwares to transform a RPi + a camera module to a simple Babyphone.\n\nI added an additional feature for my convenience:\n\n* A shutdown button + led status so that I know if it is safe to unplug the RPi\n\n# Step 1: Basic configuration\n\n* Flash **Raspian Stretch** : the binary Picam in the source repository is built for **Stretch**. If you use a different version of Raspian, please adapt the install.sh script to download the correct version of picam first before running it.\n* Connect the RPi with Wifi/Ethernet\n* Enable ssh, camera and remote GPIO\n* Configure the Hostname: (copied from [https://kamranicus.com/guides/raspberry-pi-3-baby-monitor](https://kamranicus.com/guides/raspberry-pi-3-baby-monitor)\n\n\u003e The Raspberry Pi can be pinged and connected to via the hostname babypi.local or whatever name you chose in the last step (plus .local at the end). However, the IP address this defaults to is a long one (IPv6). Web browsers can have trouble connecting to the Pi with this enabled, so we need to disable IPv6 hostname resolution.\n\u003e \n`sudo nano /etc/avahi/avahi-daemon.conf`\n\n\u003e On the line use-ipv6=yes change yes to no. Press Ctrl-O to save (hit Enter), then Ctrl-X to exit.\n\u003e \n\u003e Now reboot! sudo reboot\n\n# Step 2: Install code\n\n```\ncd ~\ngit clone https://github.com/peacemoon/RaspberryPi-Babyphone.git ~/babyphone\ncd ~/babyphone\n./install.sh\nsudo shutdown -h now\n```\n\n# Step 3: Access video stream\nThere are 2 ways to access the video stream:\n\n* Web browser: just open http://babypi.local or http://\u003c ip of the RPi \u003e\n* VLC: open the network stream http://babypi.local/hls/index.m3u8\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantranapp%2Fraspberrypi-babyphone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantranapp%2Fraspberrypi-babyphone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantranapp%2Fraspberrypi-babyphone/lists"}