[download/external] move the check for multiple selected formats to get_suitable_down...
[youtube-dl] / youtube_dl / downloader / external.py
index fe2a0198c27348746b5341853638ef4c094d2781..85cf834c7d69a873141a8ab1ea6299742bd0185f 100644 (file)
@@ -166,7 +166,7 @@ class HttpieFD(ExternalFD):
 class FFmpegFD(ExternalFD):
     @classmethod
     def supports(cls, info_dict):
-        return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps', 'm3u8', 'rtsp', 'rtmp', 'mms') and not info_dict.get('requested_formats')
+        return info_dict['protocol'] in ('http', 'https', 'ftp', 'ftps', 'm3u8', 'rtsp', 'rtmp', 'mms')
 
     @classmethod
     def available(cls):