TroglodyteDerivations
commited on
Updated lines 43-47 with: # Stream the local Agentic_AI_Trump_5_Final.mp4 file st.header("Streaming Agentic_AI_Trump_5_Final.mp4") video_file = open('Agentic_AI_Trump_5_Final.mp4', 'rb') video_bytes = video_file.read() st.video(video_bytes)
Browse files
app.py
CHANGED
@@ -40,3 +40,10 @@ video_file = open('Agentic_AI_Trump_4_Final.mp4', 'rb')
|
|
40 |
video_bytes = video_file.read()
|
41 |
st.video(video_bytes)
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
video_bytes = video_file.read()
|
41 |
st.video(video_bytes)
|
42 |
|
43 |
+
# Stream the local Agentic_AI_Trump_5_Final.mp4 file
|
44 |
+
st.header("Streaming Agentic_AI_Trump_5_Final.mp4")
|
45 |
+
video_file = open('Agentic_AI_Trump_5_Final.mp4', 'rb')
|
46 |
+
video_bytes = video_file.read()
|
47 |
+
st.video(video_bytes)
|
48 |
+
|
49 |
+
|