mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 14:45:26 +00:00
[hitbox:live] Fix hls extration (Closes #5315)
This commit is contained in:
parent
66ee7b3234
commit
65939effb5
1 changed files with 20 additions and 4 deletions
|
@ -10,6 +10,7 @@ from ..utils import (
|
||||||
float_or_none,
|
float_or_none,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
compat_str,
|
compat_str,
|
||||||
|
determine_ext,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -147,12 +148,27 @@ class HitboxLiveIE(HitboxIE):
|
||||||
servers.append(base_url)
|
servers.append(base_url)
|
||||||
for stream in cdn.get('bitrates'):
|
for stream in cdn.get('bitrates'):
|
||||||
label = stream.get('label')
|
label = stream.get('label')
|
||||||
if label != 'Auto':
|
if label == 'Auto':
|
||||||
|
continue
|
||||||
|
stream_url = stream.get('url')
|
||||||
|
if not stream_url:
|
||||||
|
continue
|
||||||
|
bitrate = int_or_none(stream.get('bitrate'))
|
||||||
|
if stream.get('provider') == 'hls' or determine_ext(stream_url) == 'm3u8':
|
||||||
|
if not stream_url.startswith('http'):
|
||||||
|
continue
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': '%s/%s' % (base_url, stream.get('url')),
|
'url': stream_url,
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'vbr': stream.get('bitrate'),
|
'tbr': bitrate,
|
||||||
'resolution': label,
|
'format_note': label,
|
||||||
|
'rtmp_live': True,
|
||||||
|
})
|
||||||
|
else:
|
||||||
|
formats.append({
|
||||||
|
'url': '%s/%s' % (base_url, stream_url),
|
||||||
|
'ext': 'mp4',
|
||||||
|
'tbr': bitrate,
|
||||||
'rtmp_live': True,
|
'rtmp_live': True,
|
||||||
'format_note': host,
|
'format_note': host,
|
||||||
'page_url': url,
|
'page_url': url,
|
||||||
|
|
Loading…
Reference in a new issue