play videos in python

import numpy as np
import cv2

cap = cv2.VideoCapture('vtest.avi')

while(cap.isOpened()):
    ret, frame = cap.read()

    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

    cv2.imshow('frame',gray)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

cap.release()
cv2.destroyAllWindows()

4.11
9
Archie 100 points

                                    import numpy as np
import cv2

cap = cv2.VideoCapture(0)

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

    # Our operations on the frame come here
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

    # Display the resulting frame
    cv2.imshow('frame',gray)
    if cv2.waitKey(1) & 0xFF == ord('q'):
        break

# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()

4.11 (9 Votes)
0
4.33
9
Brandy 90 points

                                    from playsound import playsound
playsound('audio.mp3')

4.33 (9 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
how to put a video in python how to create an video with python how to make videos by python how to use video python play video in python code how to open a video with python how to work with videos in python how load video on python how to play videos on python hoe to play a video in python play a video through python how to store videos in python play video on python How to use videos in python how to play videos with python videos in python how to play video python how to play a video in pyhton how to play video with web browser python "videos" location in python "videos" folder in python python script to play video open videos on computer using python how to play video file with a python script can you play a video in python python program for play video in website python program for play video how to play video using python play a video python how to play video with python play video opencv python play video in opencv python run a video file Python play video file how to play a video with python how to play videos python playing videos in python how to play video in opencv python open mp4 file in python play local video frame by frame opencv python how to play video in python play a video as intro in python play video using python how to play youtube videos using python play youtube videos without video python python video player play video with python how to open a video file using python how to load video from pc in python play video file with python add a video in python add a video in python python play vidoe play video using opencv how to play video file with python play video cv2 python play video in python play a video file in python play a video in python play a video in opencv how to use opencv in python for video player video player in python that play video from computer open files play videos python how to control movie using python how to control video using python how to playvideo python how to play videos in python how to play a video in python play videos in python python play video play video python how to play a video on python
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source