youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit c4c9b8440cd19838a1ef283cc54ebf0630905698
parent 32f2627aed68ed2981f438067252b9921c4a39fe
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri,  4 Nov 2016 05:02:31 +0700

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

Diffstat:
Myoutube_dl/extractor/common.py | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -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'])