Browse Source

[iwara] Fix download URLs (closes #17026)

master-ytdl-org
Kazuma Takahara 6 years ago
committed by Sergey M
parent
commit
edb0e17188
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/iwara.py

+ 1
- 1
youtube_dl/extractor/iwara.py View File

@ -77,7 +77,7 @@ class IwaraIE(InfoExtractor):
height = int_or_none(self._search_regex(
r'(\d+)p', format_id, 'height', default=None))
formats.append({
'url': a_format['uri'],
'url': self._proto_relative_url(a_format['uri'], 'https:'),
'format_id': format_id,
'ext': mimetype2ext(a_format.get('mime')) or 'mp4',
'height': height,


Loading…
Cancel
Save