Spaces:
Sleeping
Sleeping
Female default
Browse files
app.py
CHANGED
@@ -168,7 +168,7 @@ with gr.Blocks() as app_credits:
|
|
168 |
""")
|
169 |
with gr.Blocks() as app_tts:
|
170 |
gr.Markdown("# Batched TTS")
|
171 |
-
ref_voice = gr.Radio(["Female", "Male"], label="Voice", info="Reference voice for inference")
|
172 |
ref_audio_input = gr.Audio(label="Reference Audio", type="filepath", visible=False, value=Path("./ref_female.wav"))
|
173 |
gen_text_input = gr.Textbox(label="Text to Generate", lines=10, value=Path("./sample.txt").read_text())
|
174 |
generate_btn = gr.Button("Synthesize", variant="primary")
|
|
|
168 |
""")
|
169 |
with gr.Blocks() as app_tts:
|
170 |
gr.Markdown("# Batched TTS")
|
171 |
+
ref_voice = gr.Radio(["Female", "Male"], label="Voice", value="Female", info="Reference voice for inference")
|
172 |
ref_audio_input = gr.Audio(label="Reference Audio", type="filepath", visible=False, value=Path("./ref_female.wav"))
|
173 |
gen_text_input = gr.Textbox(label="Text to Generate", lines=10, value=Path("./sample.txt").read_text())
|
174 |
generate_btn = gr.Button("Synthesize", variant="primary")
|