soiz1 commited on
Commit
a4abbe8
·
verified ·
1 Parent(s): a1bbd98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -767,11 +767,11 @@ if __name__ == "__main__":
767
  "examples/reference/trump_0.wav", 50, 1.0, 0.7, True, False, -12],
768
  ]
769
 
770
- outputs = [gr.Audio(label="ストリーム出力音声", streaming=True, format='mp3'),
771
- gr.Audio(label="完全出力音声", streaming=False, format='wav')]
772
-
773
  with gr.Blocks() as interface:
774
- gr.Interface(fn=voice_conversion, description=description, inputs=inputs, outputs=outputs, title="Seed Voice Conversion", examples=examples, cache_examples=False)
 
 
 
775
 
776
  with gr.Row():
777
  gallery = gr.Gallery(label="ギャラリー", show_label=True)
 
767
  "examples/reference/trump_0.wav", 50, 1.0, 0.7, True, False, -12],
768
  ]
769
 
 
 
 
770
  with gr.Blocks() as interface:
771
+ gr.Interface(fn=voice_conversion, description=description, inputs=inputs, outputs=[
772
+ gr.Audio(label="ストリーム出力音声", streaming=True, format='mp3'),
773
+ gr.Audio(label="完全出力音声", streaming=False, format='wav')
774
+ ], title="Seed Voice Conversion", examples=examples, cache_examples=False)
775
 
776
  with gr.Row():
777
  gallery = gr.Gallery(label="ギャラリー", show_label=True)