This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pip install pafy | |
#sudo pip install --upgrade youtube_dl | |
import cv2, pafy | |
url = "https://www.youtube.com/watch______" | |
video = pafy.new(url) | |
best = video.getbest(preftype="webm") | |
#documentation: https://pypi.org/project/pafy/ | |
capture = cv2.VideoCapture(best.url) |