Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skipping DASH manifest:ExtractorError(u"Failed to download MPD manifest: <urlopen error [Errno 10054] > #14283

Closed
liudatutu opened this issue Sep 21, 2017 · 1 comment

Comments

@liudatutu
Copy link

@liudatutu liudatutu commented Sep 21, 2017

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?

@dstftw
Copy link
Collaborator

@dstftw dstftw commented Sep 21, 2017

Most likely a network issue on your side.

@dstftw dstftw closed this Sep 21, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.