代码之家  ›  专栏  ›  技术社区  ›  user9594573

AttributeError:“YouTube”对象没有属性“get\u videos”

  •  7
  • user9594573  · 技术社区  · 6 年前

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

    最后一行导致错误。

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

    谢谢

    2 回复  |  直到 6 年前
        1
  •  18
  •   Vallie Vaasha    6 年前
    import pytube
    link = "https://www.youtube.com/watch?v=mpjREfvZiDs"
    yt = pytube.YouTube(link)
    stream = yt.streams.first()
    stream.download()
    

    尝试上述代码。 Here here 类似的代码不起作用。

        2
  •  1
  •   M.A.A. SHOHAIL    4 年前
    from pytube import YouTube
    yt = YouTube("Please copy and paste the video link here")
    print(yt.title)
    stream = yt.streams.first()
    stream.download()