Hey there, can anyone tell me how to transmit the image from action camera SJ8air (or similar) via WIFI in my python code? cv.VideoCapture(0) is not working. I’ve tried to add some arguments like: cv.CAP_DSHOW and so on and it’s still not working.
see here for a wonderful explanation
chapter 3 tells us, that you can connect to a webserver via http (so you could try : VideoCapture("rtsp://192.168.1.254:554")
and hope they use some known protocol)
chapter 2 shows, that you can also connect it via usb, which would make VideoCapture(some_number)
work
good luck !
1 Like
Thanks a lot! It works
@mike , could you please make another reply with what worked exactly, so we got some 1st hand experience here ?
Well, I’ve just used:
capture = cv.VideoCapture(“rtsp://192.168.1.254:554”)
and then I worked with the video in while loop
2 Likes
2 posts were split to a new topic: DSHOW VideoCapture from USB device shows garbage data