mirror of https://github.com/yt-dlp/yt-dlp.git
[extractor/common] Keep going in some media_url is missing
This commit is contained in:
parent
f01f731107
commit
31c746e5dc
|
@ -852,7 +852,9 @@ class InfoExtractor(object):
|
||||||
media_nodes = manifest.findall('{http://ns.adobe.com/f4m/2.0}media')
|
media_nodes = manifest.findall('{http://ns.adobe.com/f4m/2.0}media')
|
||||||
for i, media_el in enumerate(media_nodes):
|
for i, media_el in enumerate(media_nodes):
|
||||||
if manifest_version == '2.0':
|
if manifest_version == '2.0':
|
||||||
media_url = media_el.attrib.get('href') or media_el.attrib['url']
|
media_url = media_el.attrib.get('href') or media_el.attrib.get('url')
|
||||||
|
if not media_url:
|
||||||
|
continue
|
||||||
manifest_url = (
|
manifest_url = (
|
||||||
media_url if media_url.startswith('http://') or media_url.startswith('https://')
|
media_url if media_url.startswith('http://') or media_url.startswith('https://')
|
||||||
else ('/'.join(manifest_url.split('/')[:-1]) + '/' + media_url))
|
else ('/'.join(manifest_url.split('/')[:-1]) + '/' + media_url))
|
||||||
|
|
Loading…
Reference in New Issue