From: Georgi Gerganov Date: Sun, 30 Oct 2022 15:11:37 +0000 (+0200) Subject: Update README.md X-Git-Tag: upstream/1.7.4~1869 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=dc129946032fb43ec558fd3a179150a0ac711f50;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp Update README.md --- diff --git a/examples/main/README.md b/examples/main/README.md index f3fbf05c..27f47ff5 100644 --- a/examples/main/README.md +++ b/examples/main/README.md @@ -6,21 +6,28 @@ It can be used as a reference for using the `whisper.cpp` library in other proje ``` ./main -h -usage: ./main [options] file0.wav file1.wav ... +usage: ./bin/main [options] file0.wav file1.wav ... options: -h, --help show this help message and exit -s SEED, --seed SEED RNG seed (default: -1) -t N, --threads N number of threads to use during computation (default: 4) - -o N, --offset N offset in milliseconds (default: 0) + -p N, --processors N number of processors to use during computation (default: 1) + -ot N, --offset-t N time offset in milliseconds (default: 0) + -on N, --offset-n N segment index offset (default: 0) + -mc N, --max-context N maximum number of text context tokens to store (default: max) + -wt N, --word-thold N word timestamp probability threshold (default: 0.010000) -v, --verbose verbose output --translate translate from source language to english -otxt, --output-txt output result in a text file -ovtt, --output-vtt output result in a vtt file -osrt, --output-srt output result in a srt file + -owts, --output-words output word-level timestamps to a text file -ps, --print_special print special tokens + -pc, --print_colors print colors -nt, --no_timestamps do not print timestamps -l LANG, --language LANG spoken language (default: en) -m FNAME, --model FNAME model path (default: models/ggml-base.en.bin) -f FNAME, --file FNAME input WAV file path + ```