Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix audio validation with video file #480

Merged
merged 2 commits into from
Jan 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions modules/utils/audio_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,27 @@
import soundfile as sf
import os
import numpy as np
from faster_whisper.audio import decode_audio

from modules.utils.files_manager import is_video
from modules.utils.logger import get_logger

logger = get_logger()


def validate_audio(audio: Optional[str] = None):
"""Validate audio file and check if it's corrupted"""
if isinstance(audio, np.ndarray):
return True

if is_video(audio):
try:
audio = decode_audio(audio)
return True
except Exception as e:
logger.info(f"The file {audio} is not able to open or corrupted. Please check the file. {e}")
return False

if not os.path.exists(audio):
return False

Expand All @@ -19,4 +33,5 @@ def validate_audio(audio: Optional[str] = None):
else:
return False
except Exception as e:
logger.info(f"The file {audio} is not able to open or corrupted. Please check the file. {e}")
return False
1 change: 0 additions & 1 deletion modules/whisper/base_transcription_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ def run(self,
start_time = time.time()

if not validate_audio(audio):
logger.info(f"The audio file {audio} is not able to open or corrupted. Please check the file.")
return [Segment()], 0

params = TranscriptionPipelineParams.from_list(list(pipeline_params))
Expand Down
Loading