hhguo commited on
Commit
83ffe8e
·
1 Parent(s): 5bad11f
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -34,8 +34,9 @@ def tts_inference(text, prompt_wav='examples/prompt_1.wav', lang='zh'):
34
  prompt_wav=prompt_wav,
35
  text=text,
36
  lang=lang,
37
- )
38
- return 48000, syn_audio.detach().cpu().numpy()
 
39
 
40
 
41
  iface = gr.Interface(
 
34
  prompt_wav=prompt_wav,
35
  text=text,
36
  lang=lang,
37
+ ).detach().cpu().numpy()
38
+ syn_audio = (syn_audio * 32768).astype(np.int16)
39
+ return 48000, syn_audio
40
 
41
 
42
  iface = gr.Interface(