Spaces:
Sleeping
Sleeping
Add labels and description
Browse files
app.py
CHANGED
@@ -121,6 +121,9 @@ def Transcribe(file):
|
|
121 |
print(f"The script ran for {end_time - start_time} seconds.")
|
122 |
return("./subtitle.sbv")
|
123 |
|
124 |
-
demo = gr.Interface(fn=Transcribe, inputs=gr.File(),
|
|
|
|
|
|
|
125 |
demo.launch()
|
126 |
|
|
|
121 |
print(f"The script ran for {end_time - start_time} seconds.")
|
122 |
return("./subtitle.sbv")
|
123 |
|
124 |
+
demo = gr.Interface(fn=Transcribe, inputs=gr.File(label="Upload an audio file of Amharic content"), gr.File(label="Download .sbv transcription")
|
125 |
+
title="Amharic Audio Transcription"
|
126 |
+
description="This application uses Meta MMS and a custom kenLM model to transcribe Amharic Audio files of arbitrary length into .sbv files. Upload an Amharic audio file and get your transcription!"
|
127 |
+
)
|
128 |
demo.launch()
|
129 |
|