Skip to content

Commit

Permalink
[iwara] Improve extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey M․ committed Jul 21, 2018
1 parent af03000 commit 4ecf300
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion youtube_dl/extractor/iwara.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
int_or_none,
mimetype2ext,
remove_end,
url_or_none,
)


Expand Down Expand Up @@ -73,11 +74,14 @@ def _real_extract(self, url):

formats = []
for a_format in video_data:
format_uri = url_or_none(a_format.get('uri'))
if not format_uri:
continue
format_id = a_format.get('resolution')
height = int_or_none(self._search_regex(
r'(\d+)p', format_id, 'height', default=None))
formats.append({
'url': self._proto_relative_url(a_format['uri'], 'https:'),
'url': self._proto_relative_url(format_uri, 'https:'),
'format_id': format_id,
'ext': mimetype2ext(a_format.get('mime')) or 'mp4',
'height': height,
Expand Down

0 comments on commit 4ecf300

Please sign in to comment.