From 43a07f144f1571d7f8159ed488780a60fb281cd3 Mon Sep 17 00:00:00 2001 From: eric Date: Thu, 19 Mar 2026 02:46:53 -0500 Subject: [PATCH] 's' --- demucs_pipeline.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/demucs_pipeline.py b/demucs_pipeline.py index fc0f0c6..716b20f 100644 --- a/demucs_pipeline.py +++ b/demucs_pipeline.py @@ -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}")