Update app.py
Browse files
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(
|
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)
|