Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
justynayang
/
Process_Image_to_Audio
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
justynayang
commited on
Oct 4, 2023
Commit
6b41708
·
1 Parent(s):
2ccb0fb
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def process(name):
4
+
image1d = image.flatten()
5
+
return 44100, image1d
6
+
7
+
iface = gr.Interface(fn=process, inputs="text", outputs="text")
8
+
iface.launch()