Skip to content

Instantly share code, notes, and snippets.

@bml1g12
Created March 28, 2021 03:44
Show Gist options
  • Save bml1g12/2074c58f0c414d456b78bef12deb48d6 to your computer and use it in GitHub Desktop.
Save bml1g12/2074c58f0c414d456b78bef12deb48d6 to your computer and use it in GitHub Desktop.
Typical video reading script in Python using OpenCV
import cv2
cap = cv2.VideoCapture("myvideo.mkv")
while(True):
# Capture frame-by-frame
ret, frame = cap.read()
if not ret:
break
# Display the resulting frame
cv2.imshow('frame', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment