diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index bce7587fd..be5b3c1ab 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1086,8 +1086,7 @@ def process_video_result(self, info_dict, download=True): if req_format is None: req_format = 'best' formats_to_download = [] - # The -1 is for supporting YoutubeIE - if req_format in ('-1', 'all'): + if req_format == 'all': formats_to_download = formats else: for rfstr in req_format.split(','):