Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -25,10 +25,10 @@ def load_data(input_file):
|
|
25 |
return speech
|
26 |
|
27 |
def asr_pipe(input_file):
|
28 |
-
transcription = p(input_file, chunk_length_s=3, stride_length_s=(1, 1))
|
29 |
return transcription
|
30 |
|
31 |
-
gr.Interface(
|
32 |
inputs = gr.inputs.Audio(source="microphone", type="filepath", optional=True, label="Hei kënnt Dir Är Sprooch iwwert de Mikro ophuelen"),
|
33 |
outputs = gr.outputs.Textbox(label="Erkannten Text"),
|
34 |
title="Sproocherkennung fir d'Lëtzebuergescht @uni.lu",
|
|
|
25 |
return speech
|
26 |
|
27 |
def asr_pipe(input_file):
|
28 |
+
transcription = p(input_file, chunk_length_s=3, stride_length_s=(1, 1))["text"]
|
29 |
return transcription
|
30 |
|
31 |
+
gr.Interface(asr_pipe,
|
32 |
inputs = gr.inputs.Audio(source="microphone", type="filepath", optional=True, label="Hei kënnt Dir Är Sprooch iwwert de Mikro ophuelen"),
|
33 |
outputs = gr.outputs.Textbox(label="Erkannten Text"),
|
34 |
title="Sproocherkennung fir d'Lëtzebuergescht @uni.lu",
|