diff options
| -rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 7c3bdb964..00f86b342 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1088,7 +1088,7 @@ class YoutubeDL(object):              if (self.params.get('outtmpl', DEFAULT_OUTTMPL) != '-'                      and info_dict['extractor'] in ['youtube', 'ted']):                  merger = FFmpegMergerPP(self) -                if merger.available and not merger.check_outdated(): +                if merger.available and merger.can_merge():                      req_format_list.append('bestvideo+bestaudio')              req_format_list.append('best')              req_format = '/'.join(req_format_list)  | 
