Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
MotionEye is an open-source software that turns your Raspberry Pi into a powerful surveillance system. It provides a web-based interface for monitoring and recording video from multiple cameras, making it an ideal solution for home security. In this article, we will guide you through the process of installing and configuring MotionEye on a Raspberry Pi. This setup is particularly valuable for users looking to create a cost-effective, DIY security system.
Examples:
Preparing Your Raspberry Pi:
sudo apt-get update
sudo apt-get upgrade
Installing MotionEye:
sudo apt-get install ffmpeg v4l-utils
sudo apt-get install motion
motion -h
Setting Up MotionEye:
sudo apt-get install python-pip python-dev libssl-dev libcurl4-openssl-dev libjpeg-dev libz-dev
sudo pip install motioneye
sudo mkdir -p /etc/motioneye
sudo cp /usr/local/share/motioneye/extra/motioneye.conf.sample /etc/motioneye/motioneye.conf
sudo mkdir -p /var/lib/motioneye
Starting MotionEye:
sudo cp /usr/local/share/motioneye/extra/motioneye.systemd-unit-local /etc/systemd/system/motioneye.service
sudo systemctl daemon-reload
sudo systemctl enable motioneye
sudo systemctl start motioneye
http://<your_raspberry_pi_ip>:8765
in your web browser. The default username is admin
with no password.Configuring Cameras:
Advanced Configuration:
/etc/motioneye/
. For example, to change the port number, edit the motioneye.conf
file:
sudo nano /etc/motioneye/motioneye.conf
sudo systemctl restart motioneye