Replies: 1 comment 4 replies
-
I am having trouble getting a Stun Request from a client in OME. Is OME's IceCandidates set to an IP that can communicate with the client?
|
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I’m developing a Python WebRTC client using the aiortc library. I’m running the default OME configuration locally with Docker, publishing the stream on ws://localhost:3333/app/stream (which works well with a web player).
My implementation follows the OME signaling protocol: it sends the request_offer command, receives the SDP offer with ICE candidates, processes them, and sends back its SDP with ICE candidates.
However, after this exchange, nothing happens except for keep-alive pings, and eventually, the ICE connection expires. Could the issue be related to the SDP or ICE candidates sent by my client?
Here are the OME logs when trying to connect :
And the logs of my python client for the ICE part:
The sdp + ICE answer of my client looks like this :
Beta Was this translation helpful? Give feedback.
All reactions