24 lines
504 B
Markdown
24 lines
504 B
Markdown
# Audio/Video Converter (wxPython + FFmpeg)
|
|
|
|
Simple GUI converter that wraps `ffmpeg` for audio/video format conversion.
|
|
|
|
## Requirements
|
|
- Python 3.9+
|
|
- `ffmpeg` available on PATH
|
|
|
|
## Install
|
|
```powershell
|
|
python -m venv .venv
|
|
.\.venv\Scripts\Activate.ps1
|
|
pip install -r requirements.txt
|
|
```
|
|
|
|
## Run
|
|
```powershell
|
|
python main.py
|
|
```
|
|
|
|
## Notes
|
|
- The app does not bundle `ffmpeg`. Install it separately and ensure `ffmpeg` is on PATH.
|
|
- Conversion runs in a background thread; the UI stays responsive.
|