Spaces:
Runtime error
Runtime error
File size: 402 Bytes
bce4717 c971b66 146c764 bce4717 146c764 bce4717 40b6439 bce4717 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
import whisper
def translatetotext(audio):
model = whisper.load_model("base")
audio = whisper.load_audio(audio)
result1= model.transcribe(audio)
#print (result1["text"])
return result1["text"]
demo = gr.Interface(
fn=translatetotext,
inputs=gr.Audio(source="upload",type="filepath"),
examples=[["Example.mp3"]],
outputs="text"
)
demo.launch() |