加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
videodownloder 552 Bytes
一键复制 编辑 原始数据 按行查看 历史
Pratik-Jha 提交于 2020-10-01 23:23 . videodownloder
from pytube import YouTube
#location where you save.
PATH = "E:/" #to_do
#link of video.
link=["https://www.youtube.com/watch?v=p8FuTenSWPI",
"https://www.youtube.com/watch?v=JWbnEt3xuos"
]#list of video links.
for i in link:
try:
yt = YouTube(i)
except:
print("Connection Error") #to handle exception
#check files with "mp4" extension
mp4files = yt.filter('mp4')
d_video = yt.get(mp4files[-1].extension,mp4files[-1].resolution)
try:
d_video.download(__PATH)
except:
print("Some Error!")
print('Task Completed!')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化