Skip to content

Commit

Permalink
[periscope] Extract width and height (closes #20015)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw authored and meunierd committed Feb 13, 2020
1 parent cddb016 commit 017e3d7
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions youtube_dl/extractor/periscope.py
Expand Up @@ -5,6 +5,7 @@

from .common import InfoExtractor
from ..utils import (
int_or_none,
parse_iso8601,
unescapeHTML,
)
Expand Down Expand Up @@ -75,6 +76,14 @@ def _real_extract(self, url):
'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'):
Expand All @@ -83,16 +92,21 @@ def _real_extract(self, url):
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 {
Expand Down

0 comments on commit 017e3d7

Please sign in to comment.