Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -46,12 +46,19 @@ def process_sheet(sheet):
|
|
| 46 |
# Main Function
|
| 47 |
def main():
|
| 48 |
# Layout Configuration
|
| 49 |
-
col1, col2
|
| 50 |
|
| 51 |
# Camera Section
|
| 52 |
with col1:
|
| 53 |
-
st.
|
| 54 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
|
| 56 |
snapshot_interval = st.slider("Snapshot Interval (seconds)", 1, 10, 5)
|
| 57 |
image_placeholder = st.empty()
|
|
@@ -84,7 +91,7 @@ def main():
|
|
| 84 |
|
| 85 |
# Chord Sheet Section
|
| 86 |
with col2:
|
| 87 |
-
st.
|
| 88 |
|
| 89 |
all_files = [f for f in glob.glob("*.txt") if ' by ' in f]
|
| 90 |
selected_file = st.selectbox("Choose a Dataset:", all_files)
|
|
|
|
| 46 |
# Main Function
|
| 47 |
def main():
|
| 48 |
# Layout Configuration
|
| 49 |
+
col1, col2 = st.columns([2, 3])
|
| 50 |
|
| 51 |
# Camera Section
|
| 52 |
with col1:
|
| 53 |
+
#st.markdown("πΉ Real-Time Camera Stream π")
|
| 54 |
+
st.markdown("## ποΈβπ¨οΈ Eye on the World: Real-Time Camera Stream π")
|
| 55 |
+
#st.markdown("π΄ Live Feed: Real-Time Camera Stream π₯")
|
| 56 |
+
#st.markdown("π Instant Vision: Real-Time Camera Stream πΈ")
|
| 57 |
+
#st.markdown("π΅οΈββοΈ Spy Mode: Real-Time Camera Stream πΆοΈ")
|
| 58 |
+
#st.markdown("π Explore Now: Real-Time Camera Stream π")
|
| 59 |
+
#st.markdown("π‘ Illuminate: Real-Time Camera Stream π¦")
|
| 60 |
+
#st.markdown("π Views Unfold: Real-Time Camera Stream ποΈ")
|
| 61 |
+
#st.markdown("β¨ Magic Lens: Real-Time Camera Stream π")
|
| 62 |
|
| 63 |
snapshot_interval = st.slider("Snapshot Interval (seconds)", 1, 10, 5)
|
| 64 |
image_placeholder = st.empty()
|
|
|
|
| 91 |
|
| 92 |
# Chord Sheet Section
|
| 93 |
with col2:
|
| 94 |
+
st.markdown("## π¬ Action! Real-Time Camera Stream Scripts in Text π½οΈ")
|
| 95 |
|
| 96 |
all_files = [f for f in glob.glob("*.txt") if ' by ' in f]
|
| 97 |
selected_file = st.selectbox("Choose a Dataset:", all_files)
|