Jetson Xavier NX self reboot when pulling rtsp stream ( using opencv or using vlc or using gst-launch-1.0 )

When I pull rtsp stream from network camera, the system will reboot.
I use jetpack4.6 and tegra 32.6.1, I wonder if I should downgrade jetpack version.
kern.log (1.0 MB)

using opencv:

def queue_img_put(q_put):

    gst = "rtspsrc location=rtsp://admin:admin@x.x.x.x:554/Streaming/Channels/101 latency=0 ! rtph264depay ! h264parse ! omxh264dec ! videoconvert ! appsink"
    cap = cv2.VideoCapture(gst)

    # also reboot
    # cap = cv2.VideoCapture("rtsp://admin:admin@x.x.x.x:554/Streaming/Channels/101")

    fps = int(cap.get(cv2.CAP_PROP_FPS))
    width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))  
    height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))  

    while True:
        is_opened, frame = cap.read()
        if is_opened:
            frame = np.copy(frame)
            q_put.put(frame)
        else:
            None
        if q_put.qsize() > 15:
            q_put.get()
            time.sleep(0.01)
        else:
            None

using vlc:

Screenshot from 2021-11-30 15-50-31

using gst-launch:

gst-launch-1.0 playbin uri=rtsp://admin:password@x.x.x.x:554/Streaming/Channels/101

Thanks a lot.

Hi,
We have deprecated omx plugins. Please replace omxh264dec with nvv4l2decoder and try again.

Also reboot.
The situation is it reboots even when i use vlc player or using gst-launch-1.0 playbin.

Hi,
It sounds like the develop kit is broken. Looks to be a hardware issue. Do you have other Xavier NX developer kit for a try? To check and confirm if it is specific to the developer kit.

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