Is there a way to get a specific frame using VideoCapture() method?
VideoCapture()
My current code is:
import numpy as np import cv2 cap = cv2.VideoCaptur
For example, to start reading 15th frame of the video you can use:
frame = 15 cap.set(cv2.CAP_PROP_POS_FRAMES, frame-1)