AttributeError:' YouTube'对象没有属性' get_videos'

时间:2018-04-04 05:08:10

标签: python video download youtube pytube

在尝试从python下载YouTube视频时,我遇到了此错误AttributeError: 'YouTube' object has no attribute 'get_videos'

最后一行会导致错误。

import pytube

link = ""
yt = pytube.YouTube(link)
videos = yt.get_videos()

谢谢!

2 个答案:

答案 0 :(得分:4)

import pytube
link = "https://www.youtube.com/watch?v=mpjREfvZiDs"
yt = pytube.YouTube(link)
stream = yt.streams.first()
stream.download()

尝试以上代码。 Herehere类似的代码不起作用。

答案 1 :(得分:0)

from pytube import YouTube
yt = YouTube("Please copy and paste the video link here")
print(yt.title)
stream = yt.streams.first()
stream.download()