about summary refs log tree commit diff
path: root/youtube_dl/downloader
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2017-02-09 17:36:59 +0100
committerRemita Amine <remitamine@gmail.com>2017-02-09 17:36:59 +0100
commitbe670b8e8f9c32fe3d37666b28c4889d780d5964 (patch)
tree4379f70e277ce1b7dbbbbfa9c694d907c47d53d0 /youtube_dl/downloader
parent37084f6641c07dbe6580b366f330eb4126d18bbe (diff)
downloadyoutube-dl-be670b8e8f9c32fe3d37666b28c4889d780d5964.tar.gz
youtube-dl-be670b8e8f9c32fe3d37666b28c4889d780d5964.tar.xz
youtube-dl-be670b8e8f9c32fe3d37666b28c4889d780d5964.zip
[external:ffmpeg] do not assume that ffmpeg unknown version format is new
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r--youtube_dl/downloader/external.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py
index 41e37261d..bdd3545a2 100644
--- a/youtube_dl/downloader/external.py
+++ b/youtube_dl/downloader/external.py
@@ -275,7 +275,7 @@ class FFmpegFD(ExternalFD):
                 args += ['-f', 'mpegts']
             else:
                 args += ['-f', 'mp4']
-                if (ffpp.basename == 'ffmpeg' and is_outdated_version(ffpp._versions['ffmpeg'], '3.2')) and (not info_dict.get('acodec') or info_dict['acodec'].split('.')[0] in ('aac', 'mp4a')):
+                if (ffpp.basename == 'ffmpeg' and is_outdated_version(ffpp._versions['ffmpeg'], '3.2', False)) and (not info_dict.get('acodec') or info_dict['acodec'].split('.')[0] in ('aac', 'mp4a')):
                     args += ['-bsf:a', 'aac_adtstoasc']
         elif protocol == 'rtmp':
             args += ['-f', 'flv']