Spaces:
Sleeping
Sleeping
test twilio STUN
Browse files- tools/webcam.py +2 -1
tools/webcam.py
CHANGED
@@ -3,7 +3,7 @@ from streamlit_webrtc import webrtc_streamer, WebRtcMode, RTCConfiguration
|
|
3 |
|
4 |
|
5 |
RTC_CONFIGURATION = RTCConfiguration(
|
6 |
-
{"iceServers": [{"urls": ["stun:stun.
|
7 |
)
|
8 |
|
9 |
|
@@ -28,3 +28,4 @@ def init_webcam(width=680):
|
|
28 |
async_processing=True,
|
29 |
)
|
30 |
return ctx.video_receiver
|
|
|
|
3 |
|
4 |
|
5 |
RTC_CONFIGURATION = RTCConfiguration(
|
6 |
+
{"iceServers": [{"urls": ["stun:global.stun.twilio.com:3478"], }]}
|
7 |
)
|
8 |
|
9 |
|
|
|
28 |
async_processing=True,
|
29 |
)
|
30 |
return ctx.video_receiver
|
31 |
+
|