how to play video using python(opencv)

Publicado el: 02 febrero 2020
en el canal de: Deeper Coders
148
1

import cv2
import numpy as np

Create a VideoCapture object and read from input file
cap = cv2.VideoCapture('Wildlife.wmv')

Check if camera opened successfully
if (cap.isOpened()== False):
print("Error opening video file")

Read until video is completed
while(cap.isOpened()):

Capture frame-by-frame
ret, frame = cap.read()
if ret == True:

Display the resulting frame
cv2.imshow('Frame', frame)

Press Q on keyboard to exit
if cv2.waitKey(25) & 0xFF == ord('q'):
break

Break the loop
else:
break

When everything done, release
the video capture object
cap.release()

Closes all the frames
cv2.destroyAllWindows()


En esta página del sitio puede ver el video en línea how to play video using python(opencv) de Duración hora minuto segunda en buena calidad , que subió el usuario Deeper Coders 02 febrero 2020, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 148 veces y le gustó 1 a los espectadores. Disfruta viendo!