Update inference_webui.py

This commit is contained in:
RVC-Boss 2025-02-27 22:46:29 +08:00 committed by GitHub
parent 94ffcbe616
commit 2cd843dcbc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -703,7 +703,7 @@ def get_tts_wav(ref_wav_path, prompt_text, prompt_language, text, text_language,
if if_sr==True and sr==24000:
print(i18n("音频超分中"))
audio_opt,sr=audio_sr(audio_opt.unsqueeze(0),sr)
max_audio=np.abs(audio).max()
max_audio=np.abs(audio_opt).max()
if max_audio > 1: audio /= max_audio
else:
audio_opt=audio_opt.cpu().detach().numpy()