1
I’m making a monitoring system with Opencv Python via streaming on my Windos 10 OS runs all correctly by irony on my Linux Mate I get the following error message when I try to run
Nonmatching transport in server reply
follows my code:
import cv2
cap = cv2.VideoCapture("rtsp://192.168.25.179:554/onvif1")
while(cap.isOpened()):
ret, frame = cap.read()
#print(frame)
cv2.imshow('frame', frame)
if cv2.waitKey(20) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
And does your Linux have access to rtsp’s network? (access to the IP and port you pointed out)
– Guilherme Nascimento
There is another process accessing rtsp at the moment in linux?
– Guilherme Nascimento