Bugfix: code breaks if audio is empty (#768)
* Bugfix: code breaks if audio is empty Regression since https://github.com/SYSTRAN/faster-whisper/pull/732 PR
This commit is contained in:
@@ -356,7 +356,7 @@ class WhisperModel:
|
|||||||
features.shape[-1] - self.feature_extractor.nb_max_frames
|
features.shape[-1] - self.feature_extractor.nb_max_frames
|
||||||
)
|
)
|
||||||
while (
|
while (
|
||||||
seek < content_frames
|
seek <= content_frames
|
||||||
and seek
|
and seek
|
||||||
< self.feature_extractor.nb_max_frames * language_detection_segments
|
< self.feature_extractor.nb_max_frames * language_detection_segments
|
||||||
):
|
):
|
||||||
|
|||||||
Reference in New Issue
Block a user