Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -125,9 +125,9 @@ with demo:
|
|
125 |
audio = gr.Audio(type="filepath", label = "Upload a file")
|
126 |
text = gr.Textbox()
|
127 |
source_lang = gr.Radio(label="Source lang", choices=list(lang_id.keys()))
|
128 |
-
gr.Examples(examples =
|
129 |
-
|
130 |
-
|
131 |
b1 = gr.Button("convert to text")
|
132 |
b1.click(audio_a_text, inputs=audio, outputs=text)
|
133 |
|
|
|
125 |
audio = gr.Audio(type="filepath", label = "Upload a file")
|
126 |
text = gr.Textbox()
|
127 |
source_lang = gr.Radio(label="Source lang", choices=list(lang_id.keys()))
|
128 |
+
gr.Examples(examples = examples,
|
129 |
+
inputs=[
|
130 |
+
source_lang])
|
131 |
b1 = gr.Button("convert to text")
|
132 |
b1.click(audio_a_text, inputs=audio, outputs=text)
|
133 |
|