mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-01-19 21:00:11 +08:00
fix ffmpeg
This commit is contained in:
parent
c9a041a8ab
commit
981ec0ddb8
@ -8,7 +8,7 @@ def load_audio(file,sr):
|
|||||||
out, _ = (
|
out, _ = (
|
||||||
ffmpeg.input(file, threads=0)
|
ffmpeg.input(file, threads=0)
|
||||||
.output("-", format="s16le", acodec="pcm_s16le", ac=1, ar=sr)
|
.output("-", format="s16le", acodec="pcm_s16le", ac=1, ar=sr)
|
||||||
.run(cmd=["./ffmpeg", "-nostdin"], capture_stdout=True, capture_stderr=True)
|
.run(cmd=["ffmpeg", "-nostdin"], capture_stdout=True, capture_stderr=True)
|
||||||
)
|
)
|
||||||
except ffmpeg.Error as e:
|
except ffmpeg.Error as e:
|
||||||
raise RuntimeError(f"Failed to load audio: {e.stderr.decode()}") from e
|
raise RuntimeError(f"Failed to load audio: {e.stderr.decode()}") from e
|
||||||
|
Loading…
Reference in New Issue
Block a user