A graphic interface for running Whisper locally on a single file or folder of files, with options to select model, language, task, and output format.
- Clone or download WhisperGUI repository, then navigate to the directory
cd WhisperGUI
- Create a new Python Virtual Environment for WhisperGUI
- Unix based (Mac or Linux):
python3 -m venv venv - Windows:
py -m venv venv
- Unix based (Mac or Linux):
- Activate virtual env
- Unix based:
source ./venv/bin/activate - Windows:
(this step may need admin permissions)
venv\scripts\activate
- Unix based:
- Install Package
- Unix based:
python -m pip install . - Windows:
python -m pip install -e .
- Unix based:
- Executable file is in:
- Unix based:
WhisperGUI/venv/bin/WhisperGUI - Windows:
WhisperGUI\venv\Scripts\WhisperGUI
- Unix based:
