File size: 741 Bytes
09e52a7
c2f7063
09e52a7
 
 
c0cf0be
780636a
c0cf0be
 
780636a
 
c0cf0be
 
 
 
 
 
780636a
c0cf0be
 
 
 
31c5e78
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import gradio as gr
# One and two
from asr import transcribe_auto  # Import the updated function

# Speech-to-Text Interface
mms_transcribe = gr.Interface(
    fn=transcribe_auto,
    inputs=gr.Audio(),
    outputs="text",
    title="Multilingual Speech-to-Text",
    description="Automatically detects and transcribes English or Swahili speech.",
    allow_flagging="never",
)

# Main Gradio App
with gr.Blocks() as demo:
    gr.Markdown("<p align='center' style='font-size: 20px;'>MMS Speech-to-Text</p>")
    gr.HTML("<center>Upload or record audio. The model will automatically detect the language (English or Swahili) and transcribe.</center>")

    mms_transcribe.render()

if __name__ == "__main__":
    demo.queue()
    demo.launch()