diff options
author | Remita Amine <remitamine@gmail.com> | 2018-05-30 17:08:32 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2018-05-30 17:08:32 +0100 |
commit | 4fd1437d9d617069494a471ba40341c2ad6623b6 (patch) | |
tree | 7d2733740546185cb78cd08b63830c7739414dae | |
parent | e425710554f1ed96504389fb526b898a942012dd (diff) |
[rbmaradio] check formats availability(closes #16585)
-rw-r--r-- | youtube_dl/extractor/rbmaradio.py | 1 |
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')) |