[iwara] Add width (closes #11724)

The heuristic is from #11724
master-ytdl-org
Yen Chi Hsuan 7 years ago
parent caf0f5f8b7
commit 2ab2c0d1f5
No known key found for this signature in database
GPG Key ID: 7F902A182457CA23

@ -81,6 +81,7 @@ class IwaraIE(InfoExtractor):
'format_id': format_id, 'format_id': format_id,
'ext': mimetype2ext(a_format.get('mime')) or 'mp4', 'ext': mimetype2ext(a_format.get('mime')) or 'mp4',
'height': height, 'height': height,
'width': int_or_none(height / 9.0 * 16.0 if height else None),
'quality': 1 if format_id == 'Source' else 0, 'quality': 1 if format_id == 'Source' else 0,
}) })

Loading…
Cancel
Save