I got the RTSP video stream on the jetson nano and ran it for about 50 frames before returning false

Hi,
We can run the python code on Jetson Nano/r32.3.1:

import sys
import cv2

vcap = cv2.VideoCapture("rtsp://freja.hiof.no:1935/rtplive/definst/hessdalen02.stream")

while(1):
    ret, frame = vcap.read()
    cv2.imshow('VIDEO', frame)
    cv2.waitKey(1)

FYR. Would suggest use gstreamer or tegra_multimedia_api to leverage hardware decoding.