mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
parent
a76e2e0f88
commit
a21e0ab1a1
@ -2798,6 +2798,7 @@ def correct_ext(filename, ext=new_ext):
|
||||
'f%s' % f['format_id'], new_info['ext'])
|
||||
if not self._ensure_dir_exists(fname):
|
||||
return
|
||||
f['filepath'] = fname
|
||||
downloaded.append(fname)
|
||||
partial_success, real_download = self.dl(fname, new_info)
|
||||
info_dict['__real_download'] = info_dict['__real_download'] or real_download
|
||||
|
@ -732,7 +732,9 @@ def run(self, info):
|
||||
args = ['-c', 'copy']
|
||||
for (i, fmt) in enumerate(info['requested_formats']):
|
||||
if fmt.get('acodec') != 'none':
|
||||
args.extend(['-map', '%u:a:0' % (i)])
|
||||
args.extend(['-map', f'{i}:a:0'])
|
||||
if self.get_audio_codec(fmt['filepath']) == 'aac':
|
||||
args.extend([f'-bsf:{i}:a:0', 'aac_adtstoasc'])
|
||||
if fmt.get('vcodec') != 'none':
|
||||
args.extend(['-map', '%u:v:0' % (i)])
|
||||
self.to_screen('Merging formats into "%s"' % filename)
|
||||
|
Loading…
Reference in New Issue
Block a user