forked from extern/whisper.cpp
check if spectogram length is <100 before doing anything else
fixes #39
This commit is contained in:
parent
1348796a93
commit
b799226973
@ -2320,6 +2320,13 @@ int whisper_full(
|
||||
return -1;
|
||||
}
|
||||
|
||||
// if length of spectrogram is less than 1s (100 samples), then return
|
||||
// basically don't process anything that is less than 1s
|
||||
// see issue #39: https://github.com/ggerganov/whisper.cpp/issues/39
|
||||
if (whisper_n_len(ctx) < 100) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
// the accumulated text context so far
|
||||
auto & prompt_past = ctx->prompt_past;
|
||||
if (params.no_context) {
|
||||
|
Loading…
Reference in New Issue
Block a user