youtube-dl

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

commit 2ab2c0d1f53f66614eda4fefb042e851e78097f0
parent caf0f5f8b7d0854caaf6778fe3a646ee0d7668fe
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Sun,  5 Feb 2017 22:30:13 +0800

[iwara] Add width (closes #11724)

The heuristic is from #11724

Diffstat:
Myoutube_dl/extractor/iwara.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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, })