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

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 に答える