Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/starwhooper/rpi-webcam-collector
https://github.com/starwhooper/rpi-webcam-collector
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/starwhooper/rpi-webcam-collector
- Owner: Starwhooper
- License: cc-by-sa-4.0
- Created: 2021-12-03T10:08:36.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-10T16:45:52.000Z (almost 3 years ago)
- Last Synced: 2023-07-28T18:40:58.893Z (over 1 year ago)
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RPi-webcom-collector #
collect webcams in local area
## Installation ##
install all needed packages to prepare the software environtent of your Raspberry Pi:
```bash
sudo apt-get update && sudo apt-get upgrade && sudo apt-get install python3-pip git ffmpeg
sudo pip3 install getmac
```
and this tool itself:
```bash
cd /opt
sudo git clone https://github.com/Starwhooper/RPi-webcam-collector
sudo mkdir /var/www/html/camimages
```## First configurtion ##
```bash
sudo chmod +x /opt/RPi-webcam-collector/collect.py
sudo cp /opt/RPi-webcam-collector/config.json.example /opt/RPi-webcam-collector/config.json
sudo nano /opt/RPi-webcam-collector/config.json
```## Start ##
Its also able to add it in cron via ```sudo crontab -e```, it prevent doublicate starts
```bash
/opt/RPi-webcam-collector
```## Update ##
If you already use it, feel free to update with
```bash
cd /opt/RPi-webcam-collector
sudo git pull origin main
```