import gradio as gr | |
def Urdu(): | |
print("An Automatic Speech Recognition System for Urdu Language") | |
interface=gr.Interface(Urdu, inputs="audio", outputs=gr.Textbox(), | |
title="An Automatic Speech Recognition System for Urdu Language", | |
description="Upload The audio file in Urdu Language and the model will convert the speech into Urdu Text" | |
) | |
interface.launch(share=True) | |