wrote base source code

This commit is contained in:
2026-02-11 15:23:53 +01:00
commit 5ab9d2e36b
3 changed files with 217 additions and 0 deletions

23
README.md Normal file
View File

@@ -0,0 +1,23 @@
# 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.