This is based on https://gist.github.com/corenel/db98113b346717e114864538996134a8, however, adapted to work over UDP transport, rather than TCP, which makes it a bit more complicated, and requires the client to fix the UDP ports used.
Assume we have the following network environments:
- Forwarder device:
- eth0 (
192.168.144.25
): for camera access - wlan0 (
192.168.1.54
): for PC access
- eth0 (
- IP Camera:
192.168.144.25
- PC:
192.168.1.51
On forwarder device, we want to forward the 8554 port (used for RTSP) of the IP camera (192.168.144.25
) to the same port in 192.168.1.54
.
-
Run
rtsp-forwarding.sh
-
You can use the following command to play forwarded RTSP stream on PC:
gst-launch-1.0 rtspsrc location=rtsp://192.168.1.54:8554/main.264 latency=0 protocols=udp port-range=25004-25005 ! rtph264depay ! avdec_h264 ! xvimagesink
The port range needs to be fixed, in order for UDP to be routed back to the client.