gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 05:13:20 27 4
gpt4 key购买 nike

我正在学习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添加到代码中以显示进度栏。

最佳答案

我不知道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%

希望能帮助到你!

关于python - 使用pytube下载管视频时如何添加tqdm以显示进度栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56000731/

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