Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +6 -1
src/streamlit_app.py
CHANGED
@@ -55,7 +55,12 @@ exists_2 = os.path.exists(video_input2)
|
|
55 |
col1, col2, col3 = st.columns(3)
|
56 |
|
57 |
with col1:
|
58 |
-
st.markdown("
|
|
|
|
|
|
|
|
|
|
|
59 |
if exists_1:
|
60 |
st.video(video_input1)
|
61 |
else:
|
|
|
55 |
col1, col2, col3 = st.columns(3)
|
56 |
|
57 |
with col1:
|
58 |
+
st.markdown("""
|
59 |
+
<div style='text-align: center; font-weight: bold;'>
|
60 |
+
Input Video 1 <span style="font-weight: normal;">(Generated with Generative AI)</span>
|
61 |
+
</div>
|
62 |
+
""", unsafe_allow_html=True)
|
63 |
+
|
64 |
if exists_1:
|
65 |
st.video(video_input1)
|
66 |
else:
|