Update app.py
Browse files
app.py
CHANGED
@@ -157,7 +157,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
157 |
)
|
158 |
|
159 |
run_button = gr.Button("π Transcribe Audio", variant="primary", interactive=False)
|
160 |
-
|
161 |
"""
|
162 |
run_button.click(
|
163 |
fn=lambda: '', # This lambda function sets the output to empty
|
|
|
157 |
)
|
158 |
|
159 |
run_button = gr.Button("π Transcribe Audio", variant="primary", interactive=False)
|
160 |
+
run_button.click(run_asr, inputs=[audio_input, youtube_input], outputs=[result])
|
161 |
"""
|
162 |
run_button.click(
|
163 |
fn=lambda: '', # This lambda function sets the output to empty
|