1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 03:29:32 +00:00

[extractor/common] Tolerate malformed RESOLUTION attribute in m3u8 manifests (closes #11113)

This commit is contained in:
Sergey M․ 2016-11-04 05:02:31 +07:00
parent 32f2627aed
commit c4c9b8440c
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -1280,9 +1280,10 @@ class InfoExtractor(object):
}
resolution = last_info.get('RESOLUTION')
if resolution:
width_str, height_str = resolution.split('x')
f['width'] = int(width_str)
f['height'] = int(height_str)
mobj = re.search(r'(?P<width>\d+)[xX](?P<height>\d+)', resolution)
if mobj:
f['width'] = int(mobj.group('width'))
f['height'] = int(mobj.group('height'))
# Unified Streaming Platform
mobj = re.search(
r'audio.*?(?:%3D|=)(\d+)(?:-video.*?(?:%3D|=)(\d+))?', f['url'])