我试图在python中编写脚本,在该脚本中,用户被提示在命令行输入一个youtube链接。然后应该下载此链接。
from pytube import YouTube
downloadFile = raw_input("Enter your Youtube link: ")
YouTube(downloadFile).streams.first().download()但是,当在命令行中输入链接时,我会得到以下内容:
File "dl.py", line 10, in <module>
YouTube(downloadFile).streams.first().download()
File "build/bdist.linux-x86_64/egg/pytube/__main__.py", line 69, in __init__
File "build/bdist.linux-x86_64/egg/pytube/extract.py", line 43, in video_id
File "build/bdist.linux-x86_64/egg/pytube/helpers.py", line 39, in regex_search
pytube.exceptions.RegexMatchError: regex pattern ((?:v=|\/)([0-9A-Za-z_-]{11}).*) had zero matches我可以通过让它工作。
欢迎任何建议!
发布于 2018-09-06 18:17:27
好吧,经过一段时间后,这看起来很管用
import sys # import sys
import pytube
link = raw_input('Please enter a url link\n')
yt = pytube.YouTube(link)
stream = yt.streams.first()
finished = stream.download()
print 'Download is complete'
sys.exit()https://stackoverflow.com/questions/52190699
复制相似问题