我正在学习pytube
下载 Youtube 视频并尝试tqdm
在其上显示进度条,但它显示各种错误,而且我无法理解当我下载视频pytube
并显示进度条时发生了什么,这是我无法的原因加入tqdm
其中。
我编写的代码pytube
运行良好,代码如下:
from pytube import YouTube
url = str(input("Enter the video link: "))
yt = YouTube(url)
videos = yt.streams.filter(file_extension='mp4').all()
filename = yt.title
s = 1
for v in videos:
print(str(s)+". "+str(v))
s += 1
n = int(input("Enter the number of the video: "))
vid = videos[n-1]
vid.download("C:/Users/user/Downloads/")
print(yt.title,"\nHas been successfully downloaded")
我需要tqdm
添加到代码中才能显示进度条。