Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -20,26 +20,30 @@ with st.container(border = True):
|
|
20 |
st.title("Examples")
|
21 |
col1, col2, col3, col4 = st.columns(4)
|
22 |
with col1:
|
23 |
-
st.
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
|
|
28 |
with col2:
|
29 |
-
st.
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
34 |
with col3:
|
35 |
-
st.
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
40 |
with col4:
|
41 |
-
st.
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
|
|
|
20 |
st.title("Examples")
|
21 |
col1, col2, col3, col4 = st.columns(4)
|
22 |
with col1:
|
23 |
+
with st.container(border = True,height=120):
|
24 |
+
st.subheader("original audio")
|
25 |
+
# st.write("some prompts...")
|
26 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
27 |
+
# st.write("some prompts...")
|
28 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
29 |
with col2:
|
30 |
+
with st.container(border = True,height=120):
|
31 |
+
st.subheader("Separated Audio")
|
32 |
+
# st.write("some prompts...")
|
33 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
34 |
+
# st.write("some prompts...")
|
35 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
36 |
with col3:
|
37 |
+
with st.container(border = True,height=120):
|
38 |
+
st.subheader("AudioLDM2")
|
39 |
+
st.write("some prompts...")
|
40 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
41 |
+
st.write("some prompts...")
|
42 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
43 |
with col4:
|
44 |
+
with st.container(border = True,height=120):
|
45 |
+
st.subheader("StableAudio")
|
46 |
+
st.write("some prompts...")
|
47 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|
48 |
+
st.write("some prompts...")
|
49 |
+
st.audio("goodres.wav", format="audio/mpeg", loop=False)
|