An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# 📹 Camera Stream

![GitHub release (latest by date)](https://img.shields.io/github/v/release/bartekl1/camera-stream?style=flat-square)
![GitHub Repo stars](https://img.shields.io/github/stars/bartekl1/camera-stream?style=flat-square)
![GitHub watchers](https://img.shields.io/github/watchers/bartekl1/camera-stream?style=flat-square)
![GitHub forks](https://img.shields.io/github/forks/bartekl1/camera-stream?style=flat-square)

## 👨‍💻 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
```