mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-20 21:23:06 +00:00
whisper : account speed_up flag for short audio (close #405)
This commit is contained in:
parent
0b85e8c401
commit
00ea21668b
@ -3230,7 +3230,7 @@ int whisper_full(
|
||||
// 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 (seek_end < 100 + seek_start) {
|
||||
if (seek_end < seek_start + (params.speed_up ? 50 : 100)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user