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