From 6b6c16ca6c2f985660b63fbec08396a875499928 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Sun, 27 Jun 2021 07:42:13 +0530 Subject: [PATCH] [downloader/ffmpeg] Fix `--ppa` when using simultaneous download --- yt_dlp/downloader/external.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py index 28b1d4e2b..bfe444e88 100644 --- a/yt_dlp/downloader/external.py +++ b/yt_dlp/downloader/external.py @@ -377,8 +377,6 @@ class FFmpegFD(ExternalFD): # http://trac.ffmpeg.org/ticket/6125#comment:10 args += ['-seekable', '1' if seekable else '0'] - args += self._configuration_args() - # start_time = info_dict.get('start_time') or 0 # if start_time: # args += ['-ss', compat_str(start_time)] @@ -446,7 +444,8 @@ class FFmpegFD(ExternalFD): for url in urls: args += ['-i', url] - args += ['-c', 'copy'] + + args += self._configuration_args() + ['-c', 'copy'] if info_dict.get('requested_formats'): for (i, fmt) in enumerate(info_dict['requested_formats']): if fmt.get('acodec') != 'none':