I have a remote camera streaming through rtsp protocol and am trying to access it in OpenCV 2.13.1 using python with following code.
camera = cv2.VideoCapture(\"
Credit from RTSP stream and OpenCV (Python):
vcap = cv.VideoCapture("rtsp://192.168.1.2:8080/out.h264") while(1): ret, frame = vcap.read() cv.imshow('VIDEO', frame) cv.waitKey(1)