Python
Reproduciendo vídeo
Vista de consulta del código. Los datos sensibles en URLs se ocultan en esta vista.
# Reproduciendo vídeo
import cv2
cap=cv2.VideoCapture("uvaq/video_01.mp4")
while True:
status,frame=cap.read()
if not status:
break
cv2.imshow("frame",frame)
if cv2.waitKey(30) & 0xFF==ord("q"):
break
cap.release()