mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[1tv] Add support for hls (closes #11786)
This commit is contained in:
parent
1076858f76
commit
1fe84be0f3
|
@ -86,18 +86,43 @@ class FirstTVIE(InfoExtractor):
|
||||||
title = item['title']
|
title = item['title']
|
||||||
quality = qualities(QUALITIES)
|
quality = qualities(QUALITIES)
|
||||||
formats = []
|
formats = []
|
||||||
|
path = None
|
||||||
for f in item.get('mbr', []):
|
for f in item.get('mbr', []):
|
||||||
src = f.get('src')
|
src = f.get('src')
|
||||||
if not src or not isinstance(src, compat_str):
|
if not src or not isinstance(src, compat_str):
|
||||||
continue
|
continue
|
||||||
tbr = int_or_none(self._search_regex(
|
tbr = int_or_none(self._search_regex(
|
||||||
r'_(\d{3,})\.mp4', src, 'tbr', default=None))
|
r'_(\d{3,})\.mp4', src, 'tbr', default=None))
|
||||||
|
if not path:
|
||||||
|
path = self._search_regex(
|
||||||
|
r'//[^/]+/(.+?)_\d+\.mp4', src,
|
||||||
|
'm3u8 path', default=None)
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': src,
|
'url': src,
|
||||||
'format_id': f.get('name'),
|
'format_id': f.get('name'),
|
||||||
'tbr': tbr,
|
'tbr': tbr,
|
||||||
'quality': quality(f.get('name')),
|
'source_preference': quality(f.get('name')),
|
||||||
})
|
})
|
||||||
|
# m3u8 URL format is reverse engineered from [1] (search for
|
||||||
|
# master.m3u8). dashEdges (that is currently balancer-vod.1tv.ru)
|
||||||
|
# is taken from [2].
|
||||||
|
# 1. http://static.1tv.ru/player/eump1tv-current/eump-1tv.all.min.js?rnd=9097422834:formatted
|
||||||
|
# 2. http://static.1tv.ru/player/eump1tv-config/config-main.js?rnd=9097422834
|
||||||
|
if not path and len(formats) == 1:
|
||||||
|
path = self._search_regex(
|
||||||
|
r'//[^/]+/(.+?$)', formats[0]['url'],
|
||||||
|
'm3u8 path', default=None)
|
||||||
|
if path:
|
||||||
|
if len(formats) == 1:
|
||||||
|
m3u8_path = ','
|
||||||
|
else:
|
||||||
|
tbrs = [compat_str(t) for t in sorted(f['tbr'] for f in formats)]
|
||||||
|
m3u8_path = '_,%s,%s' % (','.join(tbrs), '.mp4')
|
||||||
|
formats.extend(self._extract_m3u8_formats(
|
||||||
|
'http://balancer-vod.1tv.ru/%s%s.urlset/master.m3u8'
|
||||||
|
% (path, m3u8_path),
|
||||||
|
display_id, 'mp4',
|
||||||
|
entry_protocol='m3u8_native', m3u8_id='hls', fatal=False))
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
thumbnail = item.get('poster') or self._og_search_thumbnail(webpage)
|
thumbnail = item.get('poster') or self._og_search_thumbnail(webpage)
|
||||||
|
|
Loading…
Reference in a new issue