Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Skipping DASH manifest:ExtractorError(u"Failed to download MPD manifest: <urlopen error [Errno 10054] > #14283
Comments
|
Most likely a network issue on your side. |
I use Python2.7.13,youtube-dl version 2017.09.15,mycode was write in .py file
#coding=utf-8
def get_meta(url):
ydl_opts = { 'ignoreerrors':True,'encoding': 'utf-8', 'outtmpl': u'E:/Movie/%(title)s.%(ext)s'}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
metainfo = ydl.extract_info(url,download=False)
for i in metainfo:
print i,'***',metainfo[i]
if name=='main':
get_meta('https://www.youtube.com/watch?v=wPT-YdNLxCs')
when i runing this code with any other URL i get the warning too:
[youtube] wPT-YdNLxCs: Downloading webpage
[youtube] wPT-YdNLxCs: Downloading video info webpage
[youtube] wPT-YdNLxCs: Extracting video information
[youtube] wPT-YdNLxCs: Downloading MPD manifest
WARNING: [youtube] wPT-YdNLxCs: Skipping DASH manifest: ExtractorError(u"Failed to download MPD manifest: <urlopen error [Errno 10054] > (caused by URLError(error(10054, ''),))",)
WARNING: "id" field is not a string - forcing string conversion, there is an error in extractor
upload_date *** 20140220
creator *** None
..............
why?how to solve it?