Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Tonic/yestara
TeamTonic
/
MultiMed
like
19
Runtime error
App
Files
Files
Community
7
f0b4737
MultiMed
/
test.py
not-lain
edited seamless_client name
56811e2
about 1 year ago
raw
Copy download link
history
blame
Safe
174 Bytes
import
gradio
as
gr
def
process_image
(
audio
):
return
str
(
len
(audio))
iface = gr.Interface(fn=process_image, inputs=[
"textbox"
,
"audio"
], outputs=
"text"
)
iface.launch()