Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -127,6 +127,14 @@ def sidebar():
|
|
127 |
|
128 |
# Embed the video
|
129 |
st.markdown(embed_html, unsafe_allow_html=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
|
131 |
sidebar()
|
132 |
initialize_session_state()
|
|
|
127 |
|
128 |
# Embed the video
|
129 |
st.markdown(embed_html, unsafe_allow_html=True)
|
130 |
+
|
131 |
+
# Add file uploader
|
132 |
+
uploaded_file = st.file_uploader("Upload a video file")
|
133 |
+
|
134 |
+
if uploaded_file is not not None:
|
135 |
+
# You can process the uploaded file here
|
136 |
+
# For example, you can save it to a specific location or analyze its content
|
137 |
+
st.markdown("You have uploaded a file.")
|
138 |
|
139 |
sidebar()
|
140 |
initialize_session_state()
|