def play_video(video_path): # Open the video file cap = cv2.VideoCapture(video_path) if not cap.isOpened(): print("Cannot open camera") exit()
cv2.imshow('frame', frame) # Press 'q' to exit if cv2.waitKey(1) == ord('q'): break ipx-324-C.mp4
# Release the video capture and close any OpenCV windows cap.release() cv2.destroyAllWindows() def play_video(video_path): # Open the video file cap = cv2