Richard

Results 2 comments of Richard

Thanks, was using example from README. Also I noticed you used timedelta(self.timeout). You probably want timedelta(seconds=self.timeout) because the default first argument is days.

Also broken for me, but I got it working with opencv: ``` python import cv2 cam = cv2.VideoCapture('tcp://192.168.1.1:5555') running = True while running: # get current frame of video running,...