https://github.com/bartekl1/camera-stream
📷 Stream camera via HTTP
https://github.com/bartekl1/camera-stream
camera camera-stream ip-camera raspberry-pi raspberry-pi-camera raspberry-pi-camera-stream raspberrypi stream streaming video-stream video-streaming video-streaming-server
Last synced: 3 months ago
JSON representation
📷 Stream camera via HTTP
- Host: GitHub
- URL: https://github.com/bartekl1/camera-stream
- Owner: bartekl1
- License: gpl-3.0
- Created: 2024-04-01T17:25:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-04T17:54:41.000Z (11 months ago)
- Last Synced: 2024-09-29T00:22:57.723Z (8 months ago)
- Topics: camera, camera-stream, ip-camera, raspberry-pi, raspberry-pi-camera, raspberry-pi-camera-stream, raspberrypi, stream, streaming, video-stream, video-streaming, video-streaming-server
- Language: Python
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📹 Camera Stream



## 👨💻 Installation
1. Clone repository
```bash
git clone https://github.com/bartekl1/camera-stream
cd camera-stream
```2. Create configuration file named `configs.json` with the following content.
```json
{
"host": "0.0.0.0"
}
```3. Install PIP dependencies.
```bash
pip install -r requirements.txt
```4. Copy service template and replace `` with absolute path to repository directory and `` with your system username.
```bash
sudo cp camera.service /etc/systemd/system/camera.service
sudo nano /etc/systemd/system/camera.service
```5. Start and enable service.
```bash
sudo systemctl start camera
sudo systemctl enable camera
```