https://github.com/bugswriter/ffmagic
https://github.com/bugswriter/ffmagic
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bugswriter/ffmagic
- Owner: Bugswriter
- Created: 2022-12-14T15:55:02.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-14T15:57:37.000Z (over 3 years ago)
- Last Synced: 2025-02-22T21:14:29.183Z (over 1 year ago)
- Language: Python
- Size: 10.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A simple DVR system I made for fun.
## Installation
```sh
python -m venv env
source env/bin/activate
pip3 install -r requirements.txt
python3 main.py
```
Visit - [http://127.0.0.1:8000](http://127.0.0.1:8000)
for UI.
# About this project.
In my previous company I was working with RTSP streams.
While working on it, I got interested and decided to write
this project.
My objective was simple. Make a API for storing RTSP streams
in backend servers. Also manage it.
I used async multiprocessing to spawn a new process for
each RTSP stream. It's very simple but useful.