AngeT10 commited on
Commit
9d42120
·
verified ·
1 Parent(s): db19809

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -62,10 +62,10 @@ def clone(text, input_file, language, url=None, use_url=False):
62
 
63
  iface = gr.Interface(
64
  fn=clone,
65
- inputs=["text", gr.File(label="Input File", file_types=AUDIO_FORMATS), gr.Dropdown(choices=LANGUAGES, label="Language"), gr.Text(label="URL"), gr.Checkbox(label="Use URL")],
66
  outputs=gr.Audio(type='filepath'),
67
  title='Voice Clone',
68
- description=""" by [Angetyde](https://youtube.com/@Angetyde?si=7nusP31nTumIkPTF) and [Tony Assi](https://www.tonyassi.com/ ) use this colab with caution <3.""",
69
  theme=gr.themes.Base(primary_hue="teal", secondary_hue="teal", neutral_hue="slate")
70
  )
71
 
 
62
 
63
  iface = gr.Interface(
64
  fn=clone,
65
+ inputs=["text", gr.File(label="Input File", file_types=AUDIO_FORMATS), gr.Dropdown(choices=LANGUAGES, label="Language"), gr.Text(label="URL"), gr.Checkbox(label="Use URL", value=False)],
66
  outputs=gr.Audio(type='filepath'),
67
  title='Voice Clone',
68
+ description=""" by [Angetyde](https://youtube.com/@Angetyde?si=7nusP31nTumIkPTF) and [Tony Assi](https://www.tonyassi.com/ ) use this colab with caution <3. """,
69
  theme=gr.themes.Base(primary_hue="teal", secondary_hue="teal", neutral_hue="slate")
70
  )
71