display video on python without opencv?
问题 I am using openCv for making video processing. What I do is reading a video frame by frame, then applying some processing on each frame and then displaying the new modified frame. My code looks like that : video_capture = cv2.VideoCapture('video.mp4') while True: # Capture frame-by-frame ret, frame = video_capture.read() # Applying some processing to frame . . . # Displaying the new frame with processing img=cv2.imshow('title', frame) if cv2.waitKey(1) & 0xFF == ord('q'): break This way I can