warhawkmonk commited on
Commit
73cac8b
·
verified ·
1 Parent(s): da72d70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -82,12 +82,12 @@ with col1:
82
  }
83
  ctx = webrtc_streamer(
84
  key="example",
85
- mode=WebRtcMode.SENDRECV,
86
  video_transformer_factory=lambda: VideoTransformer(st.session_state),
87
  media_stream_constraints={"video": True, "audio": False},
88
  async_transform=True,
89
- rtc_configuration={"iceServers": get_ice_servers()},
90
-
 
91
  )
92
 
93
  with col2:
 
82
  }
83
  ctx = webrtc_streamer(
84
  key="example",
 
85
  video_transformer_factory=lambda: VideoTransformer(st.session_state),
86
  media_stream_constraints={"video": True, "audio": False},
87
  async_transform=True,
88
+ rtc_configuration={
89
+ "iceServers": [{"urls": ["stun:stun.l.google.com:19302"]}]
90
+ }
91
  )
92
 
93
  with col2: