我正在尝试使用PyTube软件包下载youtube视频,但我无法这样做。 我使用的是Python 3.5和pytube 9.2.2。 Urllib在其他程序中没有给我错误,但它在这里给我错误。
我使用的代码是:
break
我得到的错误是:
#importing the module
from pytube import YouTube
#where to save
SAVE_PATH = "E:/" #to_do
#link of the video to be downloaded
link="https://www.youtube.com/watch?v=xWOoBJUqlbI"
yt = YouTube(link)
#filters out all the files with "mp4" extension
mp4files = yt.filter('mp4')
yt.set_filename('GeeksforGeeks Video') #to set the name of the file
#get the video with the extension and resolution passed in the get() function
d_video = yt.get(mp4files[-1].extension,mp4files[-1].resolution)
try:
#downloading the video
d_video.download(SAVE_PATH)
except:
print("Some Error!")
print('Task Completed!')
我希望有人可以帮助我。 PS - 我只是使用urllib,http包的初学者。请不要写苛刻的评论,谢谢:0