Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,6 +9,10 @@ def transcribe(audio):
|
|
9 |
|
10 |
demo = gr.Interface(fn=transcribe, inputs="file", outputs="text",
|
11 |
title="Transcription automatique du wolof",
|
12 |
-
description="Ce modèle transcrit un fichier audio en wolof en texte en utilisant l'alphabet latin."
|
|
|
|
|
|
|
|
|
13 |
|
14 |
demo.launch()
|
|
|
9 |
|
10 |
demo = gr.Interface(fn=transcribe, inputs="file", outputs="text",
|
11 |
title="Transcription automatique du wolof",
|
12 |
+
description="Ce modèle transcrit un fichier audio en wolof en texte en utilisant l'alphabet latin.",
|
13 |
+
examples=[["file.wav"]],
|
14 |
+
input_label="Audio en wolof",
|
15 |
+
output_label="Transcription alphabet latin"
|
16 |
+
)
|
17 |
|
18 |
demo.launch()
|