Spaces:
Sleeping
Sleeping
Disable STUN to avoid aioice errors in restricted environments
Browse files
app.py
CHANGED
@@ -95,6 +95,6 @@ webrtc_streamer(
|
|
95 |
key="monitor",
|
96 |
video_processor_factory=VideoProcessor,
|
97 |
rtc_configuration=RTCConfiguration(
|
98 |
-
|
99 |
-
|
100 |
)
|
|
|
95 |
key="monitor",
|
96 |
video_processor_factory=VideoProcessor,
|
97 |
rtc_configuration=RTCConfiguration(
|
98 |
+
{"iceServers": []} # Disable STUN to avoid aioice errors in restricted environments
|
99 |
+
)
|
100 |
)
|