Raspberry Pi Remote Monitor

3.9
42 Rezensionen
10’000+
Downloads
Altersfreigabe
Jedes Alter
Screenshot
Screenshot
Screenshot
Screenshot
Screenshot
Screenshot
Screenshot

Über diese App

Raspberry Pi Remote Monitor will be able to connect to your Raspberry Pi Camera in a secure environemnt.
This application will connect to Motion only using Basic Authentication for more information about configuration or questions please referer to https://github.com/danidomi/motion or daniel.alexandre.domingues@gmail.com

Configuration



Motion Configuration in Raspberry Pi



Download only for WINDOWS - https://sourceforge.net/projects/win32diskimager

Download raspbian link - https://downloads.raspberrypi.org/raspbian_lite_latest

After writting the image to SD Card, from the command line login using pi as username and raspberry as password

>wget https://github.com/danidomi/motion/releases/download/release/motion.zip
>unzip motion.zip
>cd mmal
>sudo apt-get install -y libjpeg-dev libavformat56 libavformat-dev libavcodec56 libavcodec-dev libavutil54 libavutil-dev libc6-dev zlib1g-dev libmysqlclient18 libmysqlclient-dev libpq5 libpq-dev
>sudo apt-get install nginx
>sudo apt-get install apache2-utils
>sudo htpasswd -c /home/pi/.htpasswd admin
Add a cronjob to check if the motion camera is online

>sudo crontab -e
*/1 * * * * pgrep motion || /home/pi/mmal/startmotion
You wont even need to start it

Nginx Configuration in Raspberry Pi



>sudo apt-get install nginx sudo apt-get install apache2-utils
>sudo htpasswd -c /home/pi/.htpasswd admin
>vi /etc/nginx/sites-available/default
Add the following code below to it

location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
auth_basic “Restricted”;
auth_basic_user_file /home/pi/.htpasswd;
proxy_pass http://127.0.0.1:8081/img/video.mjpeg;
}
And start the service

>sudo service nginx start

FreeDNS Configuration in Raspberry Pi



Create an account if you don't have it

>vi ~/updatedns.sh
Copy the below content to it.

#!/bin/sh
wget --no-check-certificate -O - https://freedns.afraid.org/dynamic/update.php?XXXXXXXXXXXXX >> /tmp/XXXXXXXXXXXXX.log

>crontab -e
*/1 * * * * ~/updatedns.sh
Aktualisiert am
10.06.2024

Datensicherheit

Was die Sicherheit angeht, solltest du als Erstes verstehen, wie Entwickler deine Daten erheben und weitergeben. Die Datenschutz- und Sicherheitspraktiken können je nach deiner Verwendung, deiner Region und deinem Alter variieren. Diese Informationen wurden vom Entwickler zur Verfügung gestellt und können jederzeit von ihm geändert werden.

Bewertungen und Rezensionen

3.9
40 Rezensionen
H A
28. Dezember 2023
Müll. App stürzt ab und schliesst sich nach Eingabe der Daten zur Verbindung
War das hilfreich für dich?
Perestine Peregrina
30. Dezember 2021
Welche Daten werden zur Verbindung eingegeben? welcher Benutzer? Welcher Port? IP Adresse und Passwort ist klar.
War das hilfreich für dich?
Ein Google-Nutzer
30. März 2018
klappt gut. Schön wäre wenn die App mit der Profile Seite starten würde. Ich will nicht immer einrichten, sondern ein e bereits eingerichtete Cam auswählen und los ... dann gits auch 5* ;-)
7 Personen fanden diese Bewertung hilfreich
War das hilfreich für dich?

Neuigkeiten

Unterstützung für Android 13 (API-Level 33)