gpt4 book ai didi

python - 属性错误 : 'YouTube' object has no attribute 'get_videos'

转载 作者:行者123 更新时间:2023-12-03 05:17:22 25 4
gpt4 key购买 nike

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

最后一行导致错误。

import pytube

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

谢谢!

最佳答案

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

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

关于python - 属性错误 : 'YouTube' object has no attribute 'get_videos' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49643206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com