From: Yen Chi Hsuan Date: Sun, 5 Feb 2017 14:30:13 +0000 (+0800) Subject: [iwara] Add width (closes #11724) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=2ab2c0d1f53f66614eda4fefb042e851e78097f0;p=youtube-dl [iwara] Add width (closes #11724) The heuristic is from #11724 --- diff --git a/youtube_dl/extractor/iwara.py b/youtube_dl/extractor/iwara.py index 011274b02..a7514fc80 100644 --- a/youtube_dl/extractor/iwara.py +++ b/youtube_dl/extractor/iwara.py @@ -81,6 +81,7 @@ class IwaraIE(InfoExtractor): 'format_id': format_id, 'ext': mimetype2ext(a_format.get('mime')) or 'mp4', 'height': height, + 'width': int_or_none(height / 9.0 * 16.0 if height else None), 'quality': 1 if format_id == 'Source' else 0, })