From 25a6829ddcf6a1810c81dbfb8cdbeabd33c595dd Mon Sep 17 00:00:00 2001 From: RVC-Boss <129054828+RVC-Boss@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:00:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E5=8A=A8=E7=BB=88=E6=AD=A2=E8=BF=9B?= =?UTF-8?q?=E7=A8=8B=E7=9A=84=E6=8E=A7=E5=88=B6=E5=8F=B0=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=B1=8F=E8=94=BD=EF=BC=8C=E9=98=B2=E6=AD=A2=E5=B0=8F=E7=99=BD?= =?UTF-8?q?=E8=A7=89=E5=BE=97=E8=BF=99=E6=98=AF=E8=AE=AD=E7=BB=83=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 手动终止进程的控制台信息屏蔽,防止小白觉得这是训练报错 --- webui.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/webui.py b/webui.py index 5718f36..b7b5906 100644 --- a/webui.py +++ b/webui.py @@ -231,11 +231,13 @@ def kill_proc_tree(pid, including_parent=True): except OSError: pass +import subprocess system=platform.system() def kill_process(pid): if(system=="Windows"): cmd = "taskkill /t /f /pid %s" % pid - os.system(cmd) + # os.system(cmd) + subprocess.run(cmd,shell=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) else: kill_proc_tree(pid) @@ -251,6 +253,7 @@ def change_label(path_list): p_label = Popen(cmd, shell=True) elif(p_label!=None): kill_process(p_label.pid) + print(i18n("打标工具WebUI进程已成功手动终止")) p_label=None yield i18n("打标工具WebUI已关闭"), {'__type__':'update','visible':True}, {'__type__':'update','visible':False} @@ -263,6 +266,7 @@ def change_uvr5(): p_uvr5 = Popen(cmd, shell=True) elif(p_uvr5!=None): kill_process(p_uvr5.pid) + print(i18n("UVR5进程已成功手动终止")) p_uvr5=None yield i18n("UVR5已关闭"), {'__type__':'update','visible':True}, {'__type__':'update','visible':False} @@ -289,6 +293,7 @@ def change_tts_inference(bert_path,cnhubert_base_path,gpu_number,gpt_path,sovits p_tts_inference = Popen(cmd, shell=True) elif(p_tts_inference!=None): kill_process(p_tts_inference.pid) + print(i18n("TTS推理进程已成功手动终止")) p_tts_inference=None yield i18n("TTS推理进程已关闭"), {'__type__':'update','visible':True}, {'__type__':'update','visible':False} @@ -322,6 +327,7 @@ def close_asr(): global p_asr if(p_asr!=None): kill_process(p_asr.pid) + print(i18n("ASR进程已成功手动终止")) p_asr=None return "已终止ASR进程", {"__type__":"update","visible":True}, {"__type__":"update","visible":False} def open_denoise(denoise_inp_dir, denoise_opt_dir): @@ -346,6 +352,7 @@ def close_denoise(): global p_denoise if(p_denoise!=None): kill_process(p_denoise.pid) + print(i18n("语音降噪进程已成功手动终止")) p_denoise=None return "已终止语音降噪进程", {"__type__":"update","visible":True}, {"__type__":"update","visible":False} @@ -398,6 +405,7 @@ def close1Ba(): global p_train_SoVITS if(p_train_SoVITS!=None): kill_process(p_train_SoVITS.pid) + print(i18n("SoVITS训练进程已成功手动终止")) p_train_SoVITS=None return "已终止SoVITS训练", {"__type__":"update","visible":True}, {"__type__":"update","visible":False} @@ -448,6 +456,7 @@ def close1Bb(): global p_train_GPT if(p_train_GPT!=None): kill_process(p_train_GPT.pid) + print(i18n("GPT训练进程已成功手动终止")) p_train_GPT=None return "已终止GPT训练", {"__type__":"update","visible":True}, {"__type__":"update","visible":False} @@ -485,6 +494,7 @@ def close_slice(): for p_slice in ps_slice: try: kill_process(p_slice.pid) + print(i18n("所有切割进程已成功手动终止")) except: traceback.print_exc() ps_slice=[] @@ -548,6 +558,7 @@ def close1a(): for p1a in ps1a: try: kill_process(p1a.pid) + print(i18n("所有1a进程已成功手动终止")) except: traceback.print_exc() ps1a=[] @@ -598,6 +609,7 @@ def close1b(): for p1b in ps1b: try: kill_process(p1b.pid) + print(i18n("所有1b进程已成功手动终止")) except: traceback.print_exc() ps1b=[] @@ -657,6 +669,7 @@ def close1c(): for p1c in ps1c: try: kill_process(p1c.pid) + print(i18n("所有语义token进程已成功手动终止")) except: traceback.print_exc() ps1c=[] @@ -791,6 +804,7 @@ def close1abc(): for p1abc in ps1abc: try: kill_process(p1abc.pid) + print(i18n("所有一键三连进程已成功手动终止")) except: traceback.print_exc() ps1abc=[]