From e0fee7b2eeb571b00026677a79fb158af78674d0 Mon Sep 17 00:00:00 2001 From: Avi Peretz Date: Mon, 17 Jun 2019 13:49:51 +0300 Subject: [PATCH] fix ffmpeg --- youtube_dl/downloader/external.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/downloader/external.py b/youtube_dl/downloader/external.py index acdb27712..1c382ca2e 100644 --- a/youtube_dl/downloader/external.py +++ b/youtube_dl/downloader/external.py @@ -243,8 +243,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)] @@ -311,6 +309,8 @@ class FFmpegFD(ExternalFD): args += ['-rtmp_conn', conn] args += ['-i', url, '-c', 'copy'] + + args += self._configuration_args() if self.params.get('test', False): args += ['-fs', compat_str(self._TEST_FILE_SIZE)]