mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[svt] Add support for TV channel live streams (Closes #15279)
This commit is contained in:
parent
353f0bde78
commit
488ff2dd3a
@ -22,6 +22,8 @@ class SVTBaseIE(InfoExtractor):
|
|||||||
_GEO_COUNTRIES = ['SE']
|
_GEO_COUNTRIES = ['SE']
|
||||||
|
|
||||||
def _extract_video(self, video_info, video_id):
|
def _extract_video(self, video_info, video_id):
|
||||||
|
is_live = dict_get(video_info, ('live', 'simulcast'), default=False)
|
||||||
|
m3u8_protocol = 'm3u8' if is_live else 'm3u8_native'
|
||||||
formats = []
|
formats = []
|
||||||
for vr in video_info['videoReferences']:
|
for vr in video_info['videoReferences']:
|
||||||
player_type = vr.get('playerType') or vr.get('format')
|
player_type = vr.get('playerType') or vr.get('format')
|
||||||
@ -30,7 +32,7 @@ def _extract_video(self, video_info, video_id):
|
|||||||
if ext == 'm3u8':
|
if ext == 'm3u8':
|
||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
vurl, video_id,
|
vurl, video_id,
|
||||||
ext='mp4', entry_protocol='m3u8_native',
|
ext='mp4', entry_protocol=m3u8_protocol,
|
||||||
m3u8_id=player_type, fatal=False))
|
m3u8_id=player_type, fatal=False))
|
||||||
elif ext == 'f4m':
|
elif ext == 'f4m':
|
||||||
formats.extend(self._extract_f4m_formats(
|
formats.extend(self._extract_f4m_formats(
|
||||||
@ -90,6 +92,7 @@ def _extract_video(self, video_info, video_id):
|
|||||||
'season_number': season_number,
|
'season_number': season_number,
|
||||||
'episode': episode,
|
'episode': episode,
|
||||||
'episode_number': episode_number,
|
'episode_number': episode_number,
|
||||||
|
'is_live': is_live,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -134,7 +137,7 @@ class SVTPlayBaseIE(SVTBaseIE):
|
|||||||
|
|
||||||
class SVTPlayIE(SVTPlayBaseIE):
|
class SVTPlayIE(SVTPlayBaseIE):
|
||||||
IE_DESC = 'SVT Play and Öppet arkiv'
|
IE_DESC = 'SVT Play and Öppet arkiv'
|
||||||
_VALID_URL = r'https?://(?:www\.)?(?:svtplay|oppetarkiv)\.se/(?:video|klipp)/(?P<id>[0-9]+)'
|
_VALID_URL = r'https?://(?:www\.)?(?:svtplay|oppetarkiv)\.se/(?:video|klipp|kanaler)/(?P<id>\w+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://www.svtplay.se/video/5996901/flygplan-till-haile-selassie/flygplan-till-haile-selassie-2',
|
'url': 'http://www.svtplay.se/video/5996901/flygplan-till-haile-selassie/flygplan-till-haile-selassie-2',
|
||||||
'md5': '2b6704fe4a28801e1a098bbf3c5ac611',
|
'md5': '2b6704fe4a28801e1a098bbf3c5ac611',
|
||||||
@ -158,6 +161,9 @@ class SVTPlayIE(SVTPlayBaseIE):
|
|||||||
}, {
|
}, {
|
||||||
'url': 'http://www.svtplay.se/klipp/9023742/stopptid-om-bjorn-borg',
|
'url': 'http://www.svtplay.se/klipp/9023742/stopptid-om-bjorn-borg',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.svtplay.se/kanaler/svt1',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
@ -183,6 +189,8 @@ def _real_extract(self, url):
|
|||||||
'title': data['context']['dispatcher']['stores']['MetaStore']['title'],
|
'title': data['context']['dispatcher']['stores']['MetaStore']['title'],
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
})
|
})
|
||||||
|
if info_dict['is_live']:
|
||||||
|
info_dict['title'] = self._live_title(info_dict['title'])
|
||||||
return info_dict
|
return info_dict
|
||||||
|
|
||||||
video_id = self._search_regex(
|
video_id = self._search_regex(
|
||||||
@ -198,6 +206,8 @@ def _real_extract(self, url):
|
|||||||
info_dict['title'] = re.sub(
|
info_dict['title'] = re.sub(
|
||||||
r'\s*\|\s*.+?$', '',
|
r'\s*\|\s*.+?$', '',
|
||||||
info_dict.get('episode') or self._og_search_title(webpage))
|
info_dict.get('episode') or self._og_search_title(webpage))
|
||||||
|
if info_dict['is_live']:
|
||||||
|
info_dict['title'] = self._live_title(info_dict['title'])
|
||||||
return info_dict
|
return info_dict
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user