6

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

最后一行导致错误。

import pytube

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

谢谢!

4

2 回答 2

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

试试上面的代码。 这里这里类似的代码不起作用。

于 2018-04-04T05:47:27.813 回答
1
from pytube import YouTube
yt = YouTube("Please copy and paste the video link here")
print(yt.title)
stream = yt.streams.first()
stream.download()
于 2020-04-29T01:42:50.173 回答