From 522ba756c8d8c0258174fef6d99a7c886b04e1f1 Mon Sep 17 00:00:00 2001 From: SteadyW <233242505+YusufB5@users.noreply.github.com> Date: Sat, 6 Jun 2026 19:51:29 +0300 Subject: [PATCH] Add FFmpeg installation instructions to README Added instructions for installing FFmpeg for audio support. --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 63b6f97..b831483 100644 --- a/README.md +++ b/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:**