-
-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Experimenting streamlit-webrtc using Google Colab and Ngrok #335
Comments
Can you check with streamlit 0.83 version. Seems like a general issue |
It worked in my environment. Is it not a Google Colab specific problem, but a problem stated here? |
I solve by creating TURN Server. In case if anybody have same problem my solution are:
RTC_CONFIGURATION = RTCConfiguration(
{
"RTCIceServer": [{
"urls": ["turn:turn.xxx.dev:5349"],
"username": "user",
"credential": "password",
}]
}
) ` |
hello @trisgelar |
Hi, anyone have been experimenting streamlit-webrtc component with Google Colabs and Ngrok, i need this setup because google colab have free gpu to serve my model.
I have an ICE connection state is failed after running app.py example,
https://gist.github.com/trisgelar/86968b75a3ff84f1425c1ccee6ad0415
Thanks.
The text was updated successfully, but these errors were encountered: