[periscope] Renew HLS extraction (closes #13917)
This commit is contained in:
parent
4850478543
commit
a1aa659662
1 changed files with 13 additions and 7 deletions
|
@ -80,18 +80,24 @@ class PeriscopeIE(PeriscopeBaseIE):
|
||||||
stream = self._call_api(
|
stream = self._call_api(
|
||||||
'getAccessPublic', {'broadcast_id': token}, token)
|
'getAccessPublic', {'broadcast_id': token}, token)
|
||||||
|
|
||||||
|
video_urls = set()
|
||||||
formats = []
|
formats = []
|
||||||
for format_id in ('replay', 'rtmp', 'hls', 'https_hls'):
|
for format_id in ('replay', 'rtmp', 'hls', 'https_hls', 'lhls', 'lhlsweb'):
|
||||||
video_url = stream.get(format_id + '_url')
|
video_url = stream.get(format_id + '_url')
|
||||||
if not video_url:
|
if not video_url or video_url in video_urls:
|
||||||
continue
|
continue
|
||||||
f = {
|
video_urls.add(video_url)
|
||||||
|
if format_id != 'rtmp':
|
||||||
|
formats.extend(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))
|
||||||
|
continue
|
||||||
|
formats.append({
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
'ext': 'flv' if format_id == 'rtmp' else 'mp4',
|
'ext': 'flv' if format_id == 'rtmp' else 'mp4',
|
||||||
}
|
})
|
||||||
if format_id != 'rtmp':
|
|
||||||
f['protocol'] = 'm3u8_native' if state in ('ended', 'timed_out') else 'm3u8'
|
|
||||||
formats.append(f)
|
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue