Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -11,6 +11,10 @@ st.set_page_config(
|
|
| 11 |
layout="wide"
|
| 12 |
)
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
# Title
|
| 15 |
st.title("🎥 Video Recording & AI Analysis")
|
| 16 |
st.markdown("Upload or record a video to get instant AI-powered insights")
|
|
|
|
| 11 |
layout="wide"
|
| 12 |
)
|
| 13 |
|
| 14 |
+
# Initialize session state
|
| 15 |
+
if 'show_recorder' not in st.session_state:
|
| 16 |
+
st.session_state.show_recorder = False
|
| 17 |
+
|
| 18 |
# Title
|
| 19 |
st.title("🎥 Video Recording & AI Analysis")
|
| 20 |
st.markdown("Upload or record a video to get instant AI-powered insights")
|