mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-03 17:34:28 +01:00
Do not handle format selection for IEs that already handle it
This commit is contained in:
parent
99e206d508
commit
6ff000b888
@ -451,6 +451,11 @@ class YoutubeDL(object):
|
||||
info_dict['playlist'] = None
|
||||
info_dict['playlist_index'] = None
|
||||
|
||||
# This extractors handle format selection themselves
|
||||
if info_dict['extractor'] in [u'youtube', u'Youku', u'YouPorn', u'mixcloud']:
|
||||
self.process_info(info_dict)
|
||||
return info_dict
|
||||
|
||||
# We now pick which formats have to be downloaded
|
||||
if info_dict.get('formats') is None:
|
||||
# There's only one format available
|
||||
|
Loading…
Reference in New Issue
Block a user