https://github.com/hackinggate/video-management-service
https://github.com/hackinggate/video-management-service
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/hackinggate/video-management-service
- Owner: HackingGate
- License: mit
- Created: 2024-01-27T02:56:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-14T08:51:02.000Z (over 1 year ago)
- Last Synced: 2024-11-14T09:35:29.024Z (over 1 year ago)
- Language: Python
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Video Management Service
## Description
This Video Management Service is a web-based application developed in Flask. It allows users to upload videos, which are then converted to HLS (HTTP Live Streaming) format for efficient streaming.
## Running the application in Docker
### Prerequisites
- Docker
### Configuration
```bash
export UPLOAD_FOLDER=/path/to/your/upload/folder
```
Build the Docker image
```bash
make build
```
Run the Docker container
```bash
make up
```
## Development on local environment
### Prerequisites
- Python 3.12
- Poetry
- FFmpeg
Install dependencies
```bash
poerty install
```
Run the application
```bash
poetry run python app.py
```