Whisper
Whisper copied to clipboard
Question: Is it possible to transcribe multiple files?
Yes, using Whisperer, which is a GUI for the command line version of Whisper. I use it all the time. See https://github.com/tigros/Whisperer/releases
2025/7/29 still works on Win11
- Download Command Line Version of Desktop App cli.zip
- Write a batch script running on cmd
Mine is:
@echo off
setlocal enabledelayedexpansion
set "input_dir=disk:\path" REM your file dir
set "model_path=disk:\path" REM your model path
set "cli_path=disk:\path\cli\main.exe" REM main.exe path
set "gpu_index=0" REM gpu location default 0
REM process all the file and rename same as the originals
for %%F in ("%input_dir%\*.*") do (
echo Processing file: %%~fF
"%cli_path%" --use-gpu !gpu_index! --model "!model_path!" --output-srt --file "%%~fF"
)
echo All files processed.
pause
If you have more needs, run main.exe --help to see descriptions. ISSUE: Chinese character is not allowed to be in the file name.