[extractor/polskieradio] fix live player

This commit is contained in:
lauren n. liberda 2024-03-16 00:20:38 +01:00
parent f2868b26e9
commit 1597bcf660
No known key found for this signature in database
GPG Key ID: 1613DD32FE28C3EA

View File

@ -459,7 +459,10 @@ class PolskieRadioPlayerIE(InfoExtractor):
'info_dict': { 'info_dict': {
'id': '3', 'id': '3',
'ext': 'm4a', 'ext': 'm4a',
'title': 'Trójka', 'title': r're:Trójka \d{4}-\d{2}-\d{2} \d{2}:\d{2}',
'thumbnail': 'https://player.polskieradio.pl/images/trojka-color-logo.png',
'live_status': 'is_live',
'display_id': 'trojka',
}, },
'params': { 'params': {
'format': 'bestaudio', 'format': 'bestaudio',
@ -471,9 +474,10 @@ class PolskieRadioPlayerIE(InfoExtractor):
player_code = self._download_webpage( player_code = self._download_webpage(
self._PLAYER_URL, channel_url, self._PLAYER_URL, channel_url,
note='Downloading js player') note='Downloading js player')
channel_list = js_to_json(self._search_regex( return self._search_json(
r';var r="anteny",a=(\[.+?\])},', player_code, 'channel list')) r''';\s*var\s[a-zA-Z_]+\s*=\s*["']anteny["']\s*,\s*[a-zA-Z_]+\s*=\s*''',
return self._parse_json(channel_list, channel_url) player_code, 'channel list', channel_url, transform_source=js_to_json,
contains_pattern=r'\[{(?s:.+)}\]')
def _real_extract(self, url): def _real_extract(self, url):
channel_url = self._match_id(url) channel_url = self._match_id(url)
@ -496,19 +500,11 @@ class PolskieRadioPlayerIE(InfoExtractor):
if not station: if not station:
raise ExtractorError('Station not found even though we extracted channel') raise ExtractorError('Station not found even though we extracted channel')
formats = [] formats = self._extract_m3u8_formats(
for stream_url in station['Streams']: next((
stream_url = self._proto_relative_url(stream_url) stream_url.replace('http:', 'https:') for stream_url in station['Streams'] if stream_url.endswith('.m3u8')
if stream_url.endswith('/playlist.m3u8'): )),
formats.extend(self._extract_m3u8_formats(stream_url, channel_url, live=True)) channel_url, live=True)
elif stream_url.endswith('/manifest.f4m'):
formats.extend(self._extract_mpd_formats(stream_url, channel_url))
elif stream_url.endswith('/Manifest'):
formats.extend(self._extract_ism_formats(stream_url, channel_url))
else:
formats.append({
'url': stream_url,
})
return { return {
'id': compat_str(channel['id']), 'id': compat_str(channel['id']),