You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking for a way to relay an RTSP stream on demand, because the rtsp client that I'm working with does not accept certain URL formats (like having query params).
I was looking a bit into the code but I couldn't find If there is a way to achieve this.
An alternative is to register a listener or to get notified when an RTSP client starts / stops requesting a stream and then start an ffmpeg process to publish the origin stream to node-rtsp-rtmp-server, but I couldn't find this either.
Sorry for the long post but I'm really interested in using this tool in my projects. Thanks
The text was updated successfully, but these errors were encountered:
I'm not sure if I understand the former question correctly. node-rtsp-rtmp-server does not support relaying.
As for the latter question, in rtsp.coffee, respondPlay method is called when a client wants to start a streaming (PLAY method in RTSP), and respondTeardown is called when a client wants to stop a streaming (TEARDOWN method in RTSP). You might want to add some code to these methods.
Hi, great job with this tool, it's very useful.
I'm looking for a way to relay an RTSP stream on demand, because the rtsp client that I'm working with does not accept certain URL formats (like having query params).
I was looking a bit into the code but I couldn't find If there is a way to achieve this.
An alternative is to register a listener or to get notified when an RTSP client starts / stops requesting a stream and then start an ffmpeg process to publish the origin stream to node-rtsp-rtmp-server, but I couldn't find this either.
Sorry for the long post but I'm really interested in using this tool in my projects. Thanks
The text was updated successfully, but these errors were encountered: