mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 02:32:44 +01:00
[rte] PEP 8
This commit is contained in:
parent
2098aee7d6
commit
0238451fc0
@ -58,7 +58,6 @@ def _real_extract(self, url):
|
||||
}
|
||||
|
||||
|
||||
|
||||
class RteRadioIE(InfoExtractor):
|
||||
IE_NAME = 'rte:radio'
|
||||
IE_DESC = 'Raidió Teilifís Éireann radio'
|
||||
@ -102,15 +101,15 @@ def _real_extract(self, url):
|
||||
formats.append({'url': mg.get('url')})
|
||||
|
||||
if mg.get('hls_server') and mg.get('hls_url'):
|
||||
hls_url = mg['hls_server'] + mg['hls_url']
|
||||
hls_url = mg['hls_server'] + mg['hls_url']
|
||||
hls_formats = self._extract_m3u8_formats(
|
||||
hls_url, item_id, 'mp4', m3u8_id='hls', fatal=False)
|
||||
hls_url, item_id, 'mp4', m3u8_id='hls', fatal=False)
|
||||
formats.extend(hls_formats)
|
||||
|
||||
if mg.get('hds_server') and mg.get('hds_url'):
|
||||
f4m_url = mg['hds_server'] + mg['hds_url']
|
||||
f4m_formats = self._extract_f4m_formats(
|
||||
f4m_url, item_id, f4m_id='hds', fatal=False)
|
||||
f4m_url, item_id, f4m_id='hds', fatal=False)
|
||||
formats.extend(f4m_formats)
|
||||
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user