Replies: 2 comments 1 reply
-
It looks like you get the default URI for WebSocket (I guess, since it's built from the dev server hostname?), so somehow your config isn't making it to the WebSocket component. What is Note that you'll always have a WebSocket connection to the camera which is used to deliver the RTP stream to the browser. |
Beta Was this translation helpful? Give feedback.
-
I'm not really sure why the URI isn't used (in the code it should take the one passed through via the config). You can try to log inside the The other part of the problem is that the authentication for RTSP over WebSocket does not work via the WebSocket itself, you need to pass those via the So in theory, it would be sth like:
If you find out more about why the On another note, I wanted to ask why you're not using the |
Beta Was this translation helpful? Give feedback.
-
Hi,
I try use this library for rtsp connection, but stream is still enforced throw web socket and not rtsp. If I remove line with ws uri definition, then is stream redirected to non exist endpoint
ws://localhost:4200/rtsp-over-websocket
. What is wrong with the following code example?Beta Was this translation helpful? Give feedback.
All reactions