how to play video using python(opencv)

Published: 02 February 2020
on channel: 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()


On this page of the site you can watch the video online how to play video using python(opencv) with a duration of hours minute second in good quality, which was uploaded by the user Deeper Coders 02 February 2020, share the link with friends and acquaintances, this video has already been watched 148 times on youtube and it was liked by 1 viewers. Enjoy your viewing!