使用pytube下载管视频时如何添加tqdm以显示进度栏?

时间:2019-05-06 07:37:21

标签: python youtube python-3.6 tqdm pytube

我正在学习pytube下载YouTube视频,并在其顶部尝试tqdm以显示进度栏,但它显示了各种错误,并且当我使用{下载视频时,我不知道发生了什么{1}}并显示进度条,这是我无法在其中添加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") 添加到代码中才能显示进度条。

1 个答案:

答案 0 :(得分:3)

我不了解tqdm,但是pytube有一个progress bar feature

我这样使用它:

from pytube.cli import on_progress
from pytube import YouTube as YT
...
yt = YT(video_url, on_progress_callback=on_progress)
yt.streams\
  .filter(file_extension='mp4')\
  .get_lowest_resolution()\
  .download(video_path)

看起来像这样:

PSY - GANGNAM STYLE(강남스타일) MV.mp4
↳ |███████████████████████████████████████| 100.0%

希望有帮助!