mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-28 09:39:07 +01:00
Fix: main get n_threads from cli
This commit is contained in:
parent
f007e186fe
commit
495b81b367
1
main.cpp
1
main.cpp
@ -187,6 +187,7 @@ int main(int argc, char ** argv) {
|
|||||||
wparams.print_special_tokens = params.print_special_tokens;
|
wparams.print_special_tokens = params.print_special_tokens;
|
||||||
wparams.translate = params.translate;
|
wparams.translate = params.translate;
|
||||||
wparams.language = params.language.c_str();
|
wparams.language = params.language.c_str();
|
||||||
|
wparams.n_threads = params.n_threads;
|
||||||
|
|
||||||
if (whisper_full(ctx, wparams, pcmf32.data(), pcmf32.size()) != 0) {
|
if (whisper_full(ctx, wparams, pcmf32.data(), pcmf32.size()) != 0) {
|
||||||
fprintf(stderr, "%s: failed to process audio\n", argv[0]);
|
fprintf(stderr, "%s: failed to process audio\n", argv[0]);
|
||||||
|
Loading…
Reference in New Issue
Block a user