Last active
September 18, 2022 19:31
-
-
Save shubham1710/19a0bd65da136ab7c56971036c2e1959 to your computer and use it in GitHub Desktop.
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
from pytube import YouTube | |
#ask for the link from user | |
link = input("Enter the link of YouTube video you want to download: ") | |
yt = YouTube(link) | |
#Showing details | |
print("Title: ",yt.title) | |
print("Number of views: ",yt.views) | |
print("Length of video: ",yt.length) | |
print("Rating of video: ",yt.rating) | |
#Getting the highest resolution possible | |
ys = yt.streams.get_highest_resolution() | |
#Starting download | |
print("Downloading...") | |
ys.download() | |
print("Download completed!!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am trying to run this and getting this error. Can you help please.