Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abidlabs/whisper
Mark0047
/
whisper1
like
0
Sleeping
App
Files
Files
Community
f9c8e63
whisper1
/
app.py
abidlabs
HF staff
Update app.py
f9c8e63
verified
9 months ago
raw
Copy download link
history
blame
Safe
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()