CircusMonkey / ros_rtsp

ROS node to subscribe to an image and serve it up as a RTSP video feed.
The Unlicense
103 stars 48 forks source link

how to change the ip server address #7

Closed Hanyouyu closed 3 years ago

Hanyouyu commented 3 years ago

Thank you for your working. the default ip address is 0.0.0.0 how I can change this to the address I want

CircusMonkey commented 3 years ago

Sorry Hanyouyu, this code doesn't control the server IP address. You need to configure the IP address using the OS on the system you are running this on.

The 0.0.0.0 just means that your computer will allow this RSTP server to be used over all of your network interfaces. I recommend you keep it as 0.0.0.0.

mzahana commented 2 years ago

@CircusMonkey I have an RTSP server that is running on a different machine with known IP and port. How can I use this package to stream a ROS image topic to that RTSP server? If the source code is to be modified to enable this feature, which part of the code needs to be modified ? Thanks in advance.