summary refs log tree commit diff
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-03-13 21:13:50 +0100
committerremitamine <remitamine@gmail.com>2016-03-13 21:28:26 +0100
commitd8515fd41c504baea129de26d60ca55dd69ae3f8 (patch)
treec0c37df88d35555a859af44411464b5339ab1bc5
parent694c47b2619b9d3698e0bc7bba45bb937f97bd3c (diff)
downloadyoutube-dl-d8515fd41c504baea129de26d60ca55dd69ae3f8.tar.gz
youtube-dl-d8515fd41c504baea129de26d60ca55dd69ae3f8.tar.xz
youtube-dl-d8515fd41c504baea129de26d60ca55dd69ae3f8.zip
[downloader/external] pass configuration args to ffmpeg
-rw-r--r--youtube_dl/downloader/external.py2
1 files changed, 2 insertions, 0 deletions
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)]