summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2018-05-30 17:08:32 +0100
committerRemita Amine <remitamine@gmail.com>2018-05-30 17:08:32 +0100
commit4fd1437d9d617069494a471ba40341c2ad6623b6 (patch)
tree7d2733740546185cb78cd08b63830c7739414dae
parente425710554f1ed96504389fb526b898a942012dd (diff)
downloadyoutube-dl-4fd1437d9d617069494a471ba40341c2ad6623b6.tar.gz
youtube-dl-4fd1437d9d617069494a471ba40341c2ad6623b6.tar.xz
youtube-dl-4fd1437d9d617069494a471ba40341c2ad6623b6.zip
[rbmaradio] check formats availability(closes #16585)
-rw-r--r--youtube_dl/extractor/rbmaradio.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/rbmaradio.py b/youtube_dl/extractor/rbmaradio.py
index afa7b9161..9c4d72bbd 100644
--- a/youtube_dl/extractor/rbmaradio.py
+++ b/youtube_dl/extractor/rbmaradio.py
@@ -54,6 +54,7 @@ class RBMARadioIE(InfoExtractor):
             'abr': abr,
             'vcodec': 'none',
         } for abr in (96, 128, 256)]
+        self._check_formats(formats, episode_id)
 
         description = clean_html(episode.get('longTeaser'))
         thumbnail = self._proto_relative_url(episode.get('imageURL', {}).get('landscape'))