diff options
Diffstat (limited to 'yt_dlp/extractor/radiode.py')
-rw-r--r-- | yt_dlp/extractor/radiode.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/radiode.py b/yt_dlp/extractor/radiode.py index 726207825..1bf744951 100644 --- a/yt_dlp/extractor/radiode.py +++ b/yt_dlp/extractor/radiode.py @@ -17,7 +17,7 @@ class RadioDeIE(InfoExtractor): }, 'params': { 'skip_download': True, - } + }, } def _real_extract(self, url): @@ -37,7 +37,7 @@ class RadioDeIE(InfoExtractor): 'ext': stream['streamContentFormat'].lower(), 'acodec': stream['streamContentFormat'], 'abr': stream['bitRate'], - 'asr': stream['sampleRate'] + 'asr': stream['sampleRate'], } for stream in broadcast['streamUrls']] return { |