Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mark0047
/
transcribeAduio
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b335626
transcribeAduio
/
app.py
Mark0047
Create app.py
b335626
verified
5 months ago
raw
Copy download link
history
blame
Safe
210 Bytes
import
gradio
as
gr
model = gr.load(
"models/openai/whisper-large-v3-turbo"
)
def
transcribe
(
audio
):
return
model(audio)
gr.Interface(transcribe, gr.Audio(
type
=
"filepath"
), gr.Textbox()).launch(share=
True
)