whisper / app.py
abidlabs's picture
abidlabs HF staff
Update app.py
f9c8e63 verified
raw
history blame
No virus
180 Bytes
import gradio as gr
whisper = gr.load("models/openai/whisper-small")
def transcribe(audio):
return whisper(audio)
gr.Interface(transcribe, gr.Audio(), gr.Textbox()).launch()