stevafernandes commited on
Commit
031ec2d
·
verified ·
1 Parent(s): 75f5536

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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")