修复超分后音量超过1写错了的bug

修复超分后音量超过1写错了的bug
This commit is contained in:
RVC-Boss 2025-03-01 19:17:03 +08:00 committed by GitHub
parent 4fd57b0ea7
commit df33574a26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -704,7 +704,7 @@ def get_tts_wav(ref_wav_path, prompt_text, prompt_language, text, text_language,
print(i18n("音频超分中"))
audio_opt,sr=audio_sr(audio_opt.unsqueeze(0),sr)
max_audio=np.abs(audio_opt).max()
if max_audio > 1: audio /= max_audio
if max_audio > 1: audio_opt /= max_audio
else:
audio_opt=audio_opt.cpu().detach().numpy()
yield sr, (audio_opt * 32767).astype(np.int16)