1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 08:35:32 +00:00

[ffmpeg] Warn if ffmpeg/avconv version is too old (Fixes #4026)

This commit is contained in:
Philipp Hagemeister
2014-10-26 16:46:34 +01:00
parent d28b517154
commit 488447455d
3 changed files with 34 additions and 9 deletions

View File

@ -1026,7 +1026,7 @@ class YoutubeDL(object):
downloaded = []
success = True
merger = FFmpegMergerPP(self, not self.params.get('keepvideo'))
if not merger._get_executable():
if not merger._executable:
postprocessors = []
self.report_warning('You have requested multiple '
'formats but ffmpeg or avconv are not installed.'