j-woo commited on
Commit
46f7fb9
·
1 Parent(s): 6341f4f

Added streaming

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -170,3 +170,12 @@ with st.form("mqtt_form"):
170
  st.write(response)
171
  else:
172
  st.write("Timed out waiting for response. Is the on-device server running?")
 
 
 
 
 
 
 
 
 
 
170
  st.write(response)
171
  else:
172
  st.write("Timed out waiting for response. Is the on-device server running?")
173
+
174
+ cobot_stream_url = "https://youtube.com/live/w7zn-Sk3pG0?feature=share"
175
+
176
+ st.video(
177
+ cobot_stream_url
178
+ # Optionally enable autoplay which requires muting as browsers don't allow autoplay of unmuted video
179
+ # muted=True,
180
+ # autoplay=True
181
+ )