Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
amaai-lab
/
video2music
like
18
Running
on
T4
App
Files
Files
Community
1
7503dc6
video2music
/
app.py
kjysmu
Add application file
7503dc6
11 months ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()