X-Git-Url: https://jfr.im/git/yt-dlp.git/blobdiff_plain/86e5f3ed2e6e71eb81ea4c9e26288f16119ffd0c..61edf57f8f13f6dfd81154174e647eb5fdd26089:/yt_dlp/extractor/radiode.py diff --git a/yt_dlp/extractor/radiode.py b/yt_dlp/extractor/radiode.py index befb0b72b..1bf744951 100644 --- a/yt_dlp/extractor/radiode.py +++ b/yt_dlp/extractor/radiode.py @@ -2,6 +2,7 @@ class RadioDeIE(InfoExtractor): + _WORKING = False IE_NAME = 'radio.de' _VALID_URL = r'https?://(?P.+?)\.(?:radio\.(?:de|at|fr|pt|es|pl|it)|rad\.io)' _TEST = { @@ -16,7 +17,7 @@ class RadioDeIE(InfoExtractor): }, 'params': { 'skip_download': True, - } + }, } def _real_extract(self, url): @@ -36,9 +37,8 @@ def _real_extract(self, url): 'ext': stream['streamContentFormat'].lower(), 'acodec': stream['streamContentFormat'], 'abr': stream['bitRate'], - 'asr': stream['sampleRate'] + 'asr': stream['sampleRate'], } for stream in broadcast['streamUrls']] - self._sort_formats(formats) return { 'id': radio_id,