YoutubeIE: show a more meaningful error when it founds a rtmpe download (related #343)
This commit is contained in:
parent
0a1be1e997
commit
a7055eb956
1 changed files with 2 additions and 0 deletions
|
@ -567,6 +567,8 @@ class YoutubeIE(InfoExtractor):
|
|||
self.report_rtmp_download()
|
||||
video_url_list = [(None, video_info['conn'][0])]
|
||||
elif 'url_encoded_fmt_stream_map' in video_info and len(video_info['url_encoded_fmt_stream_map']) >= 1:
|
||||
if 'rtmpe%3Dyes' in video_info['url_encoded_fmt_stream_map'][0]:
|
||||
raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
|
||||
url_map = {}
|
||||
for url_data_str in video_info['url_encoded_fmt_stream_map'][0].split(','):
|
||||
url_data = compat_parse_qs(url_data_str)
|
||||
|
|
Loading…
Reference in a new issue