|
|
|
"""ASRversion1.ipynb |
|
|
|
Automatically generated by Colaboratory. |
|
|
|
Original file is located at |
|
https://colab.research.google.com/drive/1-gXmGVSyybRpqmodp8rrWUrE_41-qP_B |
|
""" |
|
|
|
!pip install gradio -q |
|
|
|
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) |
|
|
|
|