■ VideoCapture 클래스의 set 함수를 사용해 동영상 파일 재생 위치를 설정하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import cv2 videoCapture = cv2.VideoCapture("video.mp4") videoCapture.set(cv2.CAP_PROP_POS_FRAMES, 1800) while(videoCapture.isOpened()): result, frameNDArray = videoCapture.read() cv2.imshow("video", frameNDArray) if cv2.waitKey(1) & 0xFF == ord("q"): break videoCapture.release() cv2.destroyAllWindows() |