diff options
| author | Sergey M․ <dstftw@gmail.com> | 2019-02-27 03:41:15 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2019-02-27 03:41:15 +0700 | 
| commit | db1c3a9d3f202cc6f3fd83a2a918869e7c0d147f (patch) | |
| tree | 9379ebc17f2204a088969c62a509729b1bbd94f1 | |
| parent | 55b8588f0e4dd9597b6da5c46d05b9dd1e9f5960 (diff) | |
[periscope] Extract width and height (closes #20015)
| -rw-r--r-- | youtube_dl/extractor/periscope.py | 22 | 
1 files changed, 18 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/periscope.py b/youtube_dl/extractor/periscope.py index 8afe541ec..b337a56c0 100644 --- a/youtube_dl/extractor/periscope.py +++ b/youtube_dl/extractor/periscope.py @@ -5,6 +5,7 @@ import re  from .common import InfoExtractor  from ..utils import ( +    int_or_none,      parse_iso8601,      unescapeHTML,  ) @@ -75,6 +76,14 @@ class PeriscopeIE(PeriscopeBaseIE):              'url': broadcast[image],          } for image in ('image_url', 'image_url_small') if broadcast.get(image)] +        width = int_or_none(broadcast.get('width')) +        height = int_or_none(broadcast.get('height')) + +        def add_width_and_height(f): +            for key, val in (('width', width), ('height', height)): +                if not f.get(key): +                    f[key] = val +          video_urls = set()          formats = []          for format_id in ('replay', 'rtmp', 'hls', 'https_hls', 'lhls', 'lhlsweb'): @@ -83,16 +92,21 @@ class PeriscopeIE(PeriscopeBaseIE):                  continue              video_urls.add(video_url)              if format_id != 'rtmp': -                formats.extend(self._extract_m3u8_formats( +                m3u8_formats = self._extract_m3u8_formats(                      video_url, token, 'mp4',                      entry_protocol='m3u8_native'                      if state in ('ended', 'timed_out') else 'm3u8', -                    m3u8_id=format_id, fatal=False)) +                    m3u8_id=format_id, fatal=False) +                if len(m3u8_formats) == 1: +                    add_width_and_height(m3u8_formats[0]) +                formats.extend(m3u8_formats)                  continue -            formats.append({ +            rtmp_format = {                  'url': video_url,                  'ext': 'flv' if format_id == 'rtmp' else 'mp4', -            }) +            } +            add_width_and_height(rtmp_format) +            formats.append(rtmp_format)          self._sort_formats(formats)          return { | 
