Spaces:
Runtime error
Runtime error
File size: 292 Bytes
f3261a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import cv2
cap = cv2.VideoCapture("/research/GAN/git/CVPR2022-DaGAN/assets/video1.mp4")
while True:
ret, frame = cap.read()
if frame is None:
break
cv2.imshow("output", frame)
key = cv2.waitKey(1) & 0xff
if key == ord("q"):
break
cv2.destroyAllWindows() |