mirror of
https://github.com/openai/whisper.git
synced 2025-03-30 14:28:27 +00:00
parent
2b0c2971af
commit
deafef05f3
@ -41,7 +41,7 @@ def load_audio(file: str, sr: int = SAMPLE_RATE):
|
||||
out, _ = (
|
||||
ffmpeg.input(file, threads=0)
|
||||
.output("-", format="s16le", acodec="pcm_s16le", ac=1, ar=sr)
|
||||
.run(cmd="ffmpeg", capture_stdout=True, capture_stderr=True)
|
||||
.run(cmd=["ffmpeg", "-nostdin"], capture_stdout=True, capture_stderr=True)
|
||||
)
|
||||
except ffmpeg.Error as e:
|
||||
raise RuntimeError(f"Failed to load audio: {e.stderr.decode()}") from e
|
||||
|
Loading…
x
Reference in New Issue
Block a user