This commit is contained in:
eric
2026-03-19 02:46:53 -05:00
parent fccb46ae7b
commit 43a07f144f

View File

@@ -348,6 +348,9 @@ def run_demucs_pipeline(
break
continue
# proc_v 的 stderr 为 bytes需解码为 str
if isinstance(line, bytes):
line = line.decode("utf-8", errors="replace")
line = line.strip()
if line.startswith("__ERR__READER__"):
print(f"[ERROR] stderr reader 异常: {line}")