Add FFmpeg installation instructions to README

Added instructions for installing FFmpeg for audio support.
This commit is contained in:
SteadyW 2026-06-06 19:51:29 +03:00 committed by GitHub
parent 3da481e658
commit 522ba756c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,7 +44,19 @@ cd ASCILINE
```bash
pip install fastapi uvicorn opencv-python numpy websockets
```
### 🔈 Audio Support (FFmpeg Required)
To enable server-side audio processing (Volume 1-5), you must have FFmpeg installed.
**Option 1: Package Manager (Recommended)**
- **Windows:** `winget install ffmpeg`
- **macOS:** `brew install ffmpeg`
- **Linux:** `sudo apt install ffmpeg`
**Option 2: Manual Installation (Windows)**
If you get a `FileNotFoundError` or don't want to modify system variables:
1. Download [FFmpeg ZIP](https://github.com/BtbN/FFmpeg-Builds/releases/latest).
2. Extract `ffmpeg.exe` from the `bin` folder.
3. Drop it directly into your `ASCILINE` project folder alongside `stream_server.py`.
### 3. Run the Web Server
**Single video:**