2023-04-01 09:02:53 +02:00
|
|
|
import ffmpeg
|
|
|
|
import numpy as np
|
2023-04-15 13:44:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
def load_audio(file, sr):
|
2023-03-31 11:54:38 +02:00
|
|
|
try:
|
|
|
|
# https://github.com/openai/whisper/blob/main/whisper/audio.py#L26
|
|
|
|
# This launches a subprocess to decode audio while down-mixing and resampling as necessary.
|
|
|
|
# Requires the ffmpeg CLI and `ffmpeg-python` package to be installed.
|
2023-04-15 13:44:24 +02:00
|
|
|
file = (
|
|
|
|
file.strip(" ").strip('"').strip("\n").strip('"').strip(" ")
|
|
|
|
) # 防止小白拷路径头尾带了空格和"和回车
|
2023-03-31 11:54:38 +02:00
|
|
|
out, _ = (
|
|
|
|
ffmpeg.input(file, threads=0)
|
2023-04-22 13:39:47 +02:00
|
|
|
.output("-", format="f32le", acodec="pcm_f32le", ac=1, ar=sr)
|
2023-04-01 09:10:46 +02:00
|
|
|
.run(cmd=["ffmpeg", "-nostdin"], capture_stdout=True, capture_stderr=True)
|
2023-03-31 11:54:38 +02:00
|
|
|
)
|
2023-04-01 10:42:19 +02:00
|
|
|
except Exception as e:
|
|
|
|
raise RuntimeError(f"Failed to load audio: {e}")
|
2023-03-31 11:54:38 +02:00
|
|
|
|
2023-04-24 14:35:56 +02:00
|
|
|
return np.frombuffer(out, np.float32).flatten()
|