Install gstreamer support for opencv python package
问题 I have built my own opencv python package from source. import cv2 print(cv2.__version__) prints: 3.4.5 Now the issue I am facing is regarding the use of gstreamer from the VideoCapture class of opencv. I am trying to get this mimimum working example running on python3 cap = cv2.VideoCapture("videotestsrc ! appsink") if not cap.isOpened(): print("Cannot capture test src. Exiting.") quit() while True: ret, frame = cap.read() if ret == False: break cv2.imshow("CVtest",frame) if cv2.waitKey(1) &