drewThomasson commited on
Commit
c92f138
·
verified ·
1 Parent(s): c016ce6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -24,7 +24,7 @@ with gr.Blocks() as demo:
24
  gr.Markdown("## Voice Conversion using Coqui TTS")
25
 
26
  with gr.Row():
27
- input_audio = gr.Audio(source="microphone", label="Record or Upload Your Voice", type="filepath")
28
  target_voice = gr.Dropdown(choices=example_files, label="Select Target Voice from Examples",
29
  value=example_files[0], info="Located in Examples/ folder")
30
 
@@ -36,4 +36,4 @@ with gr.Blocks() as demo:
36
  progress=progress)
37
 
38
  # Launch with public=True for public URL access and share link
39
- demo.launch(share=True)
 
24
  gr.Markdown("## Voice Conversion using Coqui TTS")
25
 
26
  with gr.Row():
27
+ input_audio = gr.Audio(label="Record or Upload Your Voice", type="filepath")
28
  target_voice = gr.Dropdown(choices=example_files, label="Select Target Voice from Examples",
29
  value=example_files[0], info="Located in Examples/ folder")
30
 
 
36
  progress=progress)
37
 
38
  # Launch with public=True for public URL access and share link
39
+ demo.launch(share=True, public=True)