Spaces:
Running
Running
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
@@ -21,7 +21,7 @@ Use the slider to explore how the motion transitions from Input Video 1 (left) t
|
|
21 |
""", unsafe_allow_html=True)
|
22 |
|
23 |
# Slider starts at 0.5 by default
|
24 |
-
weight = st.slider("Interpolation Weight", 0.
|
25 |
|
26 |
# File paths
|
27 |
filename_interp = f"videos_generated_{weight:.1f}.mp4"
|
|
|
21 |
""", unsafe_allow_html=True)
|
22 |
|
23 |
# Slider starts at 0.5 by default
|
24 |
+
weight = st.slider("Interpolation Weight", 0.1, 0.9, step=0.1, value=0.5)
|
25 |
|
26 |
# File paths
|
27 |
filename_interp = f"videos_generated_{weight:.1f}.mp4"
|