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