Skip to content

Commit

Permalink
[rbmaradio] Add support for 192k format (closes #16631)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Jun 4, 2018
1 parent 94418c8 commit 2e190c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/rbmaradio.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _real_extract(self, url):
'format_id': compat_str(abr),
'abr': abr,
'vcodec': 'none',
} for abr in (96, 128, 256)]
} for abr in (96, 128, 192, 256)]
self._check_formats(formats, episode_id)

description = clean_html(episode.get('longTeaser'))
Expand Down

0 comments on commit 2e190c2

Please sign in to comment.