Whisper icon indicating copy to clipboard operation
Whisper copied to clipboard

Question: Is it possible to transcribe multiple files?

Open Immortalizeordie opened this issue 7 months ago • 2 comments

Immortalizeordie avatar May 30 '25 17:05 Immortalizeordie

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

RickArcher108 avatar May 30 '25 18:05 RickArcher108

2025/7/29 still works on Win11

  1. Download Command Line Version of Desktop App cli.zip
  2. 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.

zelly123 avatar Jul 29 '25 12:07 zelly123