michaelpiro1 commited on
Commit
7c1dbf5
·
verified ·
1 Parent(s): 0160fa1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -5
app.py CHANGED
@@ -16,33 +16,36 @@ add_slider = st.sidebar.slider(
16
  0.0, 100.0, (25.0, 75.0)
17
  )
18
  st.subheader('This is a subheader with a divider', divider='rainbow')
19
- with st.container(border = True):
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...")
 
16
  0.0, 100.0, (25.0, 75.0)
17
  )
18
  st.subheader('This is a subheader with a divider', divider='rainbow')
19
+ with st.container(border = True, height=300):
20
  st.title("Examples")
21
  col1, col2, col3, col4 = st.columns(4)
22
  with col1:
23
+ st.subheader("original audio")
24
  with st.container(border = True,height=120):
25
+
26
  # st.write("some prompts...")
27
  st.audio("goodres.wav", format="audio/mpeg", loop=False)
28
  # st.write("some prompts...")
29
  st.audio("goodres.wav", format="audio/mpeg", loop=False)
30
  with col2:
31
+ st.subheader("Separated Audio")
32
  with st.container(border = True,height=120):
33
+
34
  # st.write("some prompts...")
35
  st.audio("goodres.wav", format="audio/mpeg", loop=False)
36
  # st.write("some prompts...")
37
  st.audio("goodres.wav", format="audio/mpeg", loop=False)
38
  with col3:
39
+ st.subheader("AudioLDM2")
40
  with st.container(border = True,height=120):
41
+
42
  st.write("some prompts...")
43
  st.audio("goodres.wav", format="audio/mpeg", loop=False)
44
  st.write("some prompts...")
45
  st.audio("goodres.wav", format="audio/mpeg", loop=False)
46
  with col4:
47
+ st.subheader("StableAudio")
48
  with st.container(border = True,height=120):
 
49
  st.write("some prompts...")
50
  st.audio("goodres.wav", format="audio/mpeg", loop=False)
51
  st.write("some prompts...")