Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -52,8 +52,8 @@ def asr_transcript(input_file):
|
|
52 |
gr.Interface(asr_transcript,
|
53 |
inputs = gr.inputs.Audio(source="microphone", type="filepath", optional=True, label="Speaker"),
|
54 |
outputs = gr.outputs.Textbox(label="Output Text"),
|
55 |
-
title="ASR using
|
56 |
description = "This application displays transcribed text for given audio input",
|
57 |
-
examples = [["Actuator.wav"], ["anomalies.wav"]], theme="grass").launch(
|
58 |
|
59 |
|
|
|
52 |
gr.Interface(asr_transcript,
|
53 |
inputs = gr.inputs.Audio(source="microphone", type="filepath", optional=True, label="Speaker"),
|
54 |
outputs = gr.outputs.Textbox(label="Output Text"),
|
55 |
+
title="ASR using Whisper",
|
56 |
description = "This application displays transcribed text for given audio input",
|
57 |
+
examples = [["Actuator.wav"], ["anomalies.wav"]], theme="grass").launch()
|
58 |
|
59 |
|