From d8515fd41c504baea129de26d60ca55dd69ae3f8 Mon Sep 17 00:00:00 2001 From: remitamine Date: Sun, 13 Mar 2016 21:13:50 +0100 Subject: [PATCH] [downloader/external] pass configuration args to ffmpeg --- youtube_dl/downloader/external.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index 2ddd76882..697f81e3f 100644 --- a/youtube_dl/downloader/external.py +++ b/youtube_dl/downloader/external.py @@ -181,6 +181,8 @@ class FFmpegFD(ExternalFD): args = [ffpp.executable, '-y'] + args += self._configuration_args() + # start_time = info_dict.get('start_time') or 0 # if start_time: # args += ['-ss', compat_str(start_time)] -- 2.30.2