Update app.py
Browse files
app.py
CHANGED
@@ -207,9 +207,6 @@ def create_interface():
|
|
207 |
with gr.Blocks() as app:
|
208 |
gr.Markdown("# JSON Train")
|
209 |
|
210 |
-
with gr.Row():
|
211 |
-
input_type = gr.Radio(choices=["Text", "Audio"], value="Text", label="Input Type")
|
212 |
-
|
213 |
with gr.Row():
|
214 |
with gr.Column():
|
215 |
voice_dropdown = gr.Dropdown(choices=[v[0] for v in voices], label="Select Voice", value=voices[0][0] if voices else None)
|
@@ -217,21 +214,6 @@ def create_interface():
|
|
217 |
|
218 |
text_input = gr.Textbox(label="Enter Text", lines=3)
|
219 |
audio_input = gr.Audio(label="Upload Audio", type="filepath")
|
220 |
-
|
221 |
-
text_input.show(True)
|
222 |
-
audio_input.show(False)
|
223 |
-
|
224 |
-
def toggle_input(input_type):
|
225 |
-
if input_type == "Text":
|
226 |
-
return gr.update(visible=True), gr.update(visible=False)
|
227 |
-
else:
|
228 |
-
return gr.update(visible=False), gr.update(visible=True)
|
229 |
-
|
230 |
-
input_type.change(
|
231 |
-
fn=toggle_input,
|
232 |
-
inputs=[input_type],
|
233 |
-
outputs=[text_input, audio_input],
|
234 |
-
)
|
235 |
|
236 |
generate_btn = gr.Button("Generate Video")
|
237 |
|
|
|
207 |
with gr.Blocks() as app:
|
208 |
gr.Markdown("# JSON Train")
|
209 |
|
|
|
|
|
|
|
210 |
with gr.Row():
|
211 |
with gr.Column():
|
212 |
voice_dropdown = gr.Dropdown(choices=[v[0] for v in voices], label="Select Voice", value=voices[0][0] if voices else None)
|
|
|
214 |
|
215 |
text_input = gr.Textbox(label="Enter Text", lines=3)
|
216 |
audio_input = gr.Audio(label="Upload Audio", type="filepath")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
|
218 |
generate_btn = gr.Button("Generate Video")
|
219 |
|