Document how to prepare whisper-cli and model files

Feedback from Daniel Bevenius.

This adds a short code example how to prepare the `whisper-cli`
command, to make the initial setup step a little bit clearer.

Signed-off-by: Fujimoto Seiji <fujimoto@ceptord.net>
This commit is contained in:
Fujimoto Seiji 2025-04-04 01:21:00 +00:00
parent 35e4ebb665
commit de329b7816

View File

@ -11,7 +11,14 @@ performance of whisper.cpp on LibriSpeech corpus.
1. (Pre-requirement) Compile `whisper-cli` and prepare the Whisper
model in `ggml` format.
- Consult [whisper.cpp/README.md](../../README.md).
```
$ # Execute the commands below in the project root dir.
$ cmake -B build
$ cmake --build build --config Release
$ ./models/download-ggml-model.sh tiny
```
Consult [whisper.cpp/README.md](../../README.md) for more details.
2. Download the audio files from LibriSpeech project.