mirror of
https://github.com/YusufB5/ASCILINE.git
synced 2026-06-17 22:35:13 +02:00
Add FFmpeg installation instructions to README
Added instructions for installing FFmpeg for audio support.
This commit is contained in:
parent
3da481e658
commit
522ba756c8
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
|
@ -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:**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue