I'm using the line below to fetch video stream from my laptop camera and it works great.
vs = VideoStream(src=0).start()
But now, I want the source to be an IP Camera and not my laptop camera. Is there a way like just changing the src to the IP of the camera? I've searched all over and what I mostly saw was using the cv2 VideoCapture method. I'm wondering if that solution will also work with VideoStream function.
Thanks!