aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-07-21 18:02:41 +0700
committerSergey M․ <dstftw@gmail.com>2018-07-21 18:03:58 +0700
commit4ecf300d13a6503ae80b76e01047b41d86ab4d92 (patch)
tree784eda93544e6471b5b6ef1bc469996176797265
parentaf03000ad5a445f03fbacb63ce626f8dcfe785c7 (diff)
downloadyoutube-dl-4ecf300d13a6503ae80b76e01047b41d86ab4d92.tar.xz
[iwara] Improve extraction
-rw-r--r--youtube_dl/extractor/iwara.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/iwara.py b/youtube_dl/extractor/iwara.py
index 250140d91..907d5fc8b 100644
--- a/youtube_dl/extractor/iwara.py
+++ b/youtube_dl/extractor/iwara.py
@@ -7,6 +7,7 @@ from ..utils import (
int_or_none,
mimetype2ext,
remove_end,
+ url_or_none,
)
@@ -73,11 +74,14 @@ class IwaraIE(InfoExtractor):
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,