mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[downloader/ffmpeg] Fix --ppa
when using simultaneous download
This commit is contained in:
parent
f6745c4980
commit
6b6c16ca6c
1 changed files with 2 additions and 3 deletions
|
@ -377,8 +377,6 @@ def _call_downloader(self, tmpfilename, info_dict):
|
|||
# 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 @@ def _call_downloader(self, tmpfilename, info_dict):
|
|||
|
||||
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':
|
||||
|
|
Loading…
Reference in a new issue