Junity commited on
Commit
ee33b8a
β€’
1 Parent(s): 6381ba7
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -21,7 +21,8 @@ def interference(wav_file, trans=0):
21
  # write a gr.Interface that accept a wav file
22
  iface = gr.Interface(
23
  fn=interference,
 
24
  inputs=[gr.inputs.Audio(type="filepath", label="Input Audio"), gr.inputs.Number(default=0, label="音高变捒")],
25
- outputs=[gr.outputs.Audio(type="numpy", label="Reversed Audio"), "text"]
26
  )
27
  iface.launch()
 
21
  # write a gr.Interface that accept a wav file
22
  iface = gr.Interface(
23
  fn=interference,
24
+ title="Singing Voice Conversion(TokaiTeio)",
25
  inputs=[gr.inputs.Audio(type="filepath", label="Input Audio"), gr.inputs.Number(default=0, label="音高变捒")],
26
+ outputs=[gr.outputs.Audio(type="numpy", label="Inferenced Audio"), "text"]
27
  )
28
  iface.launch()