Multiple RTSP cameras using GStreamer to a python OpenCV array on Jetson Nano?

How to get multiple RTSP cameras using GStreamer to a python OpenCV array?

Say there are 4 RTSP Cameras:

rtsp://192.168.1.50:8080/out.h264
rtsp://192.168.1.51:8080/out.h264
rtsp://192.168.1.52:8080/out.h264
rtsp://192.168.1.53:8080/out.h264

create a gstreamer pipeline jetson nano to get frames from all 4 RTSP cameras and then put them in a numpy array of shape (4,640,480,3) ?

Hi,
This would need other users to share experience. We only have the samples of receiving RTSP stream:
Doesn't work nvv4l2decoder for decoding RTSP in gstreamer + opencv - #3 by DaneLLL
Displaying to the screen with OpenCV and GStreamer - #9 by DaneLLL

Not sure but it may work to have 4 cv2.VideoCapture() to receive the streams. Please give it a try.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.