ageraustine commited on
Commit
d5dda99
1 Parent(s): 01235c1

default value

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -105,21 +105,21 @@ vol_col, comp_col, reverb_col = st.columns(3)
105
 
106
  with vol_col:
107
  volume_balance = svs.vertical_slider(
108
- "Volume Balance", min_value=-10.0, max_value=10.0, value=0.0, step=0.1,
109
  slider_color="green", track_color="lightgray", thumb_color="red"
110
  )
111
  vol_button = st.button("Apply Volume Balance")
112
 
113
  with comp_col:
114
  compression_ratio = svs.vertical_slider(
115
- "Compression Ratio", min_value=1.0, max_value=10.0, value=3.0, step=0.1,
116
  slider_color="blue", track_color="lightgray", thumb_color="navy"
117
  )
118
  comp_button = st.button("Apply Compression")
119
 
120
  with reverb_col:
121
  reverb_amount = svs.vertical_slider(
122
- "Reverb Amount", min_value=1.0, max_value=10.0, value=3.0, step=0.1,
123
  slider_color="orange", track_color="lightgray", thumb_color="darkorange"
124
  )
125
  reverb_button = st.button("Apply Reverb")
 
105
 
106
  with vol_col:
107
  volume_balance = svs.vertical_slider(
108
+ "Volume Balance", min_value=-10.0, max_value=10.0, default_value=0.0, step=0.1,
109
  slider_color="green", track_color="lightgray", thumb_color="red"
110
  )
111
  vol_button = st.button("Apply Volume Balance")
112
 
113
  with comp_col:
114
  compression_ratio = svs.vertical_slider(
115
+ "Compression Ratio", min_value=1.0, max_value=10.0, default_value=3.0, step=0.1,
116
  slider_color="blue", track_color="lightgray", thumb_color="navy"
117
  )
118
  comp_button = st.button("Apply Compression")
119
 
120
  with reverb_col:
121
  reverb_amount = svs.vertical_slider(
122
+ "Reverb Amount", min_value=1.0, max_value=10.0, default_value=3.0, step=0.1,
123
  slider_color="orange", track_color="lightgray", thumb_color="darkorange"
124
  )
125
  reverb_button = st.button("Apply Reverb")