Python 五行 codes下載 YouTube 影片

Subscribers:
5,010
Published on ● Video Link: https://www.youtube.com/watch?v=xXvYc3pqEjw



Duration: 6:07
735 views
15


from pytube import YouTube

# to use unverified ssl you can add this (MacOS)
# import ssl
# ssl._create_default_https_context = ssl._create_unverified_context

url = "https://www.youtube.com/watch?v=l4ErKiiFvNk"
my_video = YouTube(url)

# resolving MacOS error: run the following in PyCharm terminal
# open /Applications/Python\ 3.7/Install\ Certificates.command

my_video = my_video.streams.get_highest_resolution()
my_video.download()
print("done")