@@ -6,7 +6,7 @@ It can be used as a reference for using the `whisper.cpp` library in other proje
66```
77./build/bin/whisper-cli -h
88
9- usage: ./whisper-cli [options] file0.wav file1.wav ...
9+ usage: ./build-pkg/bin/ whisper-cli [options] file0.wav file1.wav ...
1010
1111options:
1212 -h, --help [default] show this help message and exit
@@ -20,9 +20,12 @@ options:
2020 -sow, --split-on-word [false ] split on word rather than on token
2121 -bo N, --best-of N [5 ] number of best candidates to keep
2222 -bs N, --beam-size N [5 ] beam size for beam search
23+ -ac N, --audio-ctx N [0 ] audio context size (0 - all)
2324 -wt N, --word-thold N [0.01 ] word timestamp probability threshold
2425 -et N, --entropy-thold N [2.40 ] entropy threshold for decoder fail
2526 -lpt N, --logprob-thold N [-1.00 ] log probability threshold for decoder fail
27+ -tp, --temperature N [0.00 ] The sampling temperature, between 0 and 1
28+ -tpi, --temperature-inc N [0.20 ] The increment of temperature, between 0 and 1
2629 -debug, --debug-mode [false ] enable debug mode (eg. dump log_mel)
2730 -tr, --translate [false ] translate from source language to english
2831 -di, --diarize [false ] stereo audio diarization
@@ -38,16 +41,23 @@ options:
3841 -oj, --output-json [false ] output result in a JSON file
3942 -ojf, --output-json-full [false ] include more information in the JSON file
4043 -of FNAME, --output-file FNAME [ ] output file path (without file extension)
44+ -np, --no-prints [false ] do not print anything other than the results
4145 -ps, --print-special [false ] print special tokens
4246 -pc, --print-colors [false ] print colors
4347 -pp, --print-progress [false ] print progress
4448 -nt, --no-timestamps [false ] do not print timestamps
4549 -l LANG, --language LANG [en ] spoken language ('auto' for auto-detect)
4650 -dl, --detect-language [false ] exit after automatically detecting language
47- --prompt PROMPT [ ] initial prompt
51+ --prompt PROMPT [ ] initial prompt (max n_text_ctx/2 tokens)
4852 -m FNAME, --model FNAME [models/ggml-base.en.bin] model path
4953 -f FNAME, --file FNAME [ ] input WAV file path
5054 -oved D, --ov-e-device DNAME [CPU ] the OpenVINO device used for encode inference
55+ -dtw MODEL --dtw MODEL [ ] compute token-level timestamps
5156 -ls, --log-score [false ] log best decoder scores of tokens
5257 -ng, --no-gpu [false ] disable GPU
58+ -fa, --flash-attn [false ] flash attention
59+ --suppress-regex REGEX [ ] regular expression matching tokens to suppress
60+ --grammar GRAMMAR [ ] GBNF grammar to guide decoding
61+ --grammar-rule RULE [ ] top-level GBNF grammar rule name
62+ --grammar-penalty N [100.0 ] scales down logits of nongrammar tokens
5363```
0 commit comments