OpenCV (Open Source Computer Vision) is a computer vision library that contains various functions to perform operations on Images or videos. OpenCV library can be used to perform multiple operations on videos.
Letâs see how to play a video using the OpenCV Python.
To capture a video, we need to create a VideoCapture object. VideoCapture have the device index or the name of a video file. Device index is just the number to specify which camera. If we pass 0 then it is for first camera, 1 for second camera so on. We capture the video frame by frame.
Syntax :
cv2.VideoCapture(0): Means first camera or webcam.
cv2.VideoCapture(1): Means second camera or webcam.
cv2.VideoCapture("file name.mp4"): Means video file
Below is the implementation:
# importing libraries import cv2 import numpy as np # Create a VideoCapture object and read from input file cap = cv2.VideoCapture('tree.mp4') # 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() |
Note : Video file should have in same directory where program is executed.
Output:
Sample Frame of video :

Related Article : How to play video in reverse mode.
Recommended Posts:
- Python | Play a video in reverse mode using OpenCV
- OpenCV C++ Program to play a video
- OpenCV - Facial Landmarks and Face Detection using dlib and OpenCV
- MoviePy â Turning on auto play for video clip file
- Python | Create video using multiple images using OpenCV
- Transition from OpenCV 2 to OpenCV 3.x
- Converting Color video to grayscale using OpenCV in Python
- Python - Process images of a video using OpenCV
- Python - Displaying real time FPS at which webcam/video file is processed using OpenCV
- Saving Operated Video from a webcam using OpenCV
- Saving a Video using OpenCV
- OpenCV Python program for Vehicle detection in a Video frame
- Python OpenCV: Capture Video from Camera
- Python OpenCv: Write text on video
- OpenCV C++ Program to blur a Video
- OpenCV | Loading Video
- 10 Interesting modules in Python to play with
- Python VLC MediaPlayer - Setting MRL to play
- Python VLC MediaPlayer - Setting Play Rate
- Python VLC MediaPlayer - Getting Play Rate
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

