camera is capturing pictures rather than videos in python opencv code example
Example: how to capture an image with web cam open cv
cam = cv2.VideoCapture(0)
image = cam.read()[1]
cv2.imshow("image", image)
cv2.waitKey(0)
cv2.destroyAllWindows()